Best Of
Importing datetime values from Excel without a transformation
We've got a bit of a toolchain between some of our data and Domo:
Database --> Library --> Excel --> Workbench --> Domo
According to the Domo Excel Connector docs, Domo can handle a bunch of date, time and datetime formats automatically:
mm/dd/yy
dd-month-yy
weekday-month,dd,yyyy
m
m-dd
hh:mm:ss PM
hh:mm
mm/dd/yy hh:mm PM
So far, having no luck with datetimes. Pure dates can come in as dates, pure times can come in as times - but datetimes aren't making it in properly. They're either strings or numbers, not datetimes. To simplify testing this, I've abbreviated the path of the data to:
Excel --> Domo
I figure that if I can get this working, I can sort out how to do it back in our full environment.
Is there a way to set up an Excel worksheet to hold datetime values that Domo can interpret directly without any kind of transformation? The docs say that it's possible but, If not, I guess I'll use a Custom Date Format transform in Workbench instead of a DataFlow or Beast Mode to avoid any confusion in Domo with two different data sets. (We'll never need to chart with the badly interpreted datetime values.)
Thank you!
Re: NEW Domo Data Science Resources Guide (help w/ Jupyter, scripting tiles, data science tiles, AutoML)
Thank you for the resources. Scheduling/triggering multiple notebooks within one workspace would be nice. Is that a planned feature or should I just look elsewhere for running our automation scripts?
Re: Schedule App Studio Reports
@Arthi Annadi I don't see an update on my end so I believe not!
Re: What does the publish App do in the App studio?
Here are some KB articles with more information:
https://domo-support.domo.com/s/article/360043441593?language=en_US
Re: Remove null values to make sorting works accordingly
You could correct the nulls by using the following beastmode:
IFNULL(`YourValue`, 0)
You can also sort any values using a beastmode like this:
CASE WHEN `Transaction Month` = 'Jan' THEN 1 WHEN `Transaction Month` = 'Feb' THEN 2 WHEN `Transaction Month` = 'Mar' THEN 3 WHEN `Transaction Month` = 'Apr' THEN 4 WHEN `Transaction Month` = 'May' THEN 5 WHEN `Transaction Month` = 'Jun' THEN 6 WHEN `Transaction Month` = 'Jul' THEN 7 WHEN `Transaction Month` = 'Aug' THEN 8 WHEN `Transaction Month` = 'Sep' THEN 9 WHEN `Transaction Month` = 'Oct' THEN 10 WHEN `Transaction Month` = 'Nov' THEN 11 WHEN `Transaction Month` = 'Dec' THEN 12 Else 13 END
Re: 11/18 PRODUCT RELEASE SNEAK: New Table Element in App Studio (Beta)
Love to see enhancements to tables, this is great!
Re: Group By Issue
Wow - i think that worked, i need to test this out a bit more, but its looking good. I was way off on my first attempt haha thank you for clarifying @rco. I wish I understood better what exactly is happening here, but I'll figure that out.
I'll keep validating this, but I think its working!
Re: New Guy Here - What's the Point of Apps??
I think it also has a lot to do with interactivity. Apps have more capability with workflows, forms, etc.
I agree with @Data_Devon. If dashboards work for you, use them. There's no need to work through apps if you are monitoring/analyzing metrics without more process needs.