-
Re: Period over Period Multi Value Chart Number Formatting
Hi @seth_fuller You can switch off the abbreviation in the mutli-value card under the chart properties > Value Options and uncheck the Auto Abbreviate option.1 -
Re: How to change the owner of a App in Domo
You won't be able to change the owner but you can add another user as an Admin on the asset if you go under Admin > Asset Library and select the app you have published to your instance. You can al…1 -
Re: Pulling Domo Data into R
Domo provides an R package you can leverage to extract data from Domo using R: It outlines how to connect within the README2 -
Re: Undelete a user
If you add the account back with the same email address it should restore the user's account with the same ID and metadata.1 -
Re: Display state selected
You could use a beast mode to display the selected state if only one is selected: CASE WHEN COUNT(DISTINCT `State`) = 1 THEN MAX(`State`) ELSE '' END1