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
- 10.5K All Categories
- 7 Connect
- 917 Connectors
- 250 Workbench
- 464 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 477 Datasets
- 190 Visualize
- 252 Beast Mode
- 2.1K Charting
- 11 Variables
- 17 Automate
- 354 APIs & Domo Developer
- 89 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 246 Distribute
- 62 Domo Everywhere
- 243 Scheduled Reports
- 21 Manage
- 42 Governance & Security
- 173 Product Ideas
- 1.2K Ideas Exchange
- 12 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive