-
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 -
Re: Count transactions AND sum quantity on specific transactions by type
Are your transactions duplicated? If not you could do a conditional sum like: SUM(CASE WHEN `transaction_type` = 'Quantity' THEN `quantity` ELSE 1 END)3