-
Re: Is the course builder app still being maintained? Or developed
@Ashleigh has used Course Builder heavily in the past but I'm not sure how well it's maintained currently. I'd reach out to your AE or support if you have questions1 -
Re: Python
Hi @user052846 You've got the basic idea of what needs to happen however the one issue you have is that you're not writing back out a DataFrame object but rather an Index object. If you're wanting to…1 -
Re: Removing Duplicates with Condition
You can take the minimum value of your Haz / Non-Haz text in your rank and window to determine if had any Hazardous. Alternatively, you can use a case statement to return 1 if the value is hazardous …1 -
Re: Extract multiple sets of numbers from a single string
If they're always in the same position with the same ' - ' separator you can use SPLIT_PART SPLIT_PART(`string`, ' - ', 7) SPLIT_PART(`string`, ' - ', 8)2 -
Re: How to import date/time values in workbench exactly as 8/26/2024 9:00:49 AM, without any transform?
When a date is imported into Domo it's assumed that it's UTC. If you want to treat it as a date then you'll need to import it as a date. If the date doesn't align with what you're expecting due to th…2