-
Re: Showing negative number as positive but also making sure the Total Row is summing correctly
Because how Domo processes the data with the Pivot table you can't have your data elements display positive but your total negative and vice versa. I'd recommend logging an idea in the idea exchange …1 -
Re: Python script not running
You'll need to reach out to Domo Support to see if they can get you a more detailed answer as likely something is happening in the backend.1 -
Re: Why are multiple "Send Email" blocks forcing all input fields to be required?
I'd recommend logging a support ticket for this issue.1 -
Re: Pro-code Editor Submission
Have you inspected the network traffic to determine if you're getting an error with your JavaScript code used to save the records?1 -
Re: Magic ETL Possibility?
A more straightforward method rather than multiple CASE WHEN statements is to use SPLIT_PART SPLIT_PART(`Fruit`, ',', 1) -- First in CSV SPLIT_PART(`Fruit`, ',', 2) -- Second in CSV SPLIT_PART(`Fruit…2