Can you turn a date range into each individual date in the range?

I have a start date and end date with a total sum of hours to work.
These are each 10 days with an average of 3.2 hours and 2.8 hours respectivelivy. Is there a way i can display each indiviudual day of the date range with the work per day? Something like this?
Answers
-
You'll need to prep your data via an ETL to do this. You can pull in the calendar dimension dataset from the Domo Dimensions connector.
In the etl filter your calendar dataset to be after your first date in your dataset and exclude any dates in the future with a filter tile formula
`dt` >= DATE('2020-01-01') AND `dt` < CURRENT_DATE()
This will reduce the amount of records your ETL will need to process and make it run faster.
Then add a constant to your dataset and the filtered calender dataset with the value of 1.
Join these two datasets together on this new join column constant.
Feed the result into a filter and filter where the
dt
field from the calendar dataset is between your start and end date.Then use a formula tile to calculate the work hours per day.
`work` / DATEDIFF(`plannedEndDate`, `plannedStart`)
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**2 -
That worked like a charm. Thank you!
0
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Data Connections
- 1.3K Connectors
- 309 Workbench
- 17 Cloud Integrations
- Data & ETL
- 2.3K Magic ETL
- 120 SQL DataFlows
- 667 Datasets
- Visualize & Apps
- 90 App Studio
- 198 Pro-code Components
- 2.6K Charting & Analyzer
- 874 Calculations & Variables (Beast Mode)
- AI & Data science
- 23 Domo AI & AI Chat
- 4 Managing AI
- 18 Jupyter Workspaces
- Automate
- 122 Workflows
- Alerts
- Distribute
- 118 Domo Everywhere
- 284 Reporting
- Manage
- 146 Governance & Security
- 489 APIs
- 11 Add-ins & Plugins
- 13 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 118 Community Announcements
- 5K Archive