-
Re: Has anyone a simple example of using curl or Go to access the API?
Have you looked at this page? https://developer.domo.com/docs/authentication/overview-4 All of their exampels are actually using curl, and they show you how to start with authentication, authorizatio…1 -
Re: Declaring MySQL variable in Dataflow
As far as I know, variables are not supported in Domo's MySQL dataflow. As a possible solution though....you could have one transform output a table that just has the value you are trying to store, a…1 -
Re: How do I remove duplicate values in my data set?
You can create a BeastMode function which returns the count of distinct (unique) values for a given column like so: COUNT(DISTINCT `AccountId`) Let us know if that helps you.1 -
Re: Adjusting chart properties dynamically with data?
Unfortunately the chart properties cannot be tied to a beast mode or data column (great idea for the Ideas Exchange forum). I'm not familair with your data strcuture but you can get creative with the…1 -
Re: Trying to calculate with multiple conditions in Beast mode
"WHEN (`Planned Hours`-`Total Hours from SOW Breakdown`)/`Planned Hours`.0" is the issue. Change that to: WHEN (`Planned Hours`-`Total Hours from SOW Breakdown`)/`Planned Hours` > .0 Not…1