-
Re: Leading zeros in csv exports removed
Domo will frequently take it's "best guess" on the data type as you import it. unless you're importing it with Workbench I don't believe you can explicitly set the data type. what you can d…2 -
Re: Workbench Job Hanging, Dataset stuck on 'Preparing'
@walker_page Domo support would be the best person to direct that question to as they do have access to error logs. that said, it looks like you're pushing 9.3M rows of data with each push. Is that a…1 -
Re: How to add index number in the dataset
in magic etl add a constant, 1, called temp add a rank and window tile. rownumber order by temp no partition. in a dataset view rownumber() over ()1 -
Re: Adding a line on bar-chart
side note... rewrite your metric CASE WHEN `Metric` = 'C' THEN sum(sum(`Value`)) over(partition by YEAR(`Date`), `Metric` order by `Date`) ELSE 0 END Avoid putting aggregations inside of a CASE state…2 -
Re: My ETL fail with no indication why
If i had to guess, when Domo previews your data (it scans the first N-thousand rows) it determined your data type to be type Number. When it got to N-thousand +1 row it came across the text 'nan' whi…1