Projected monthly total based on current progress in current month
Is there a way to project the month-end value based on the current month's progress in a bar chart? So if there are 10 days of data totaling 1M widgets during September (9/1-10), it will project 3M widgets for the current month (1M will be solid and 2M will be striped to signify striped).
I see a whole bunch of options in the Last Value Projection tool… but none of them seem to provide a simple estimate. Below is an example, which is misleading…
Best Answers
-
You can utilize a window function to calculate the estimated month depending on the number of days that have elapsed in the current month.
LAST_DAY returns the number of days in the month
Running Total:
CASE WHEN `Date` < CURRENT_DATE() THEN
SUM(SUM(`Sales`)) OVER (PARTITION BY LAST_DAY(`Date`) ORDER BY `Date`)
ENDEnd of Month Estimate:
CASE WHEN `Date` < CURRENT_DATE() THEN
SUM(SUM(`Sales`)) OVER (PARTITION BY LAST_DAY(`Date`) ORDER BY `Date`)
/
DAYOFMONTH(`Date`)
*
DAYOFMONTH(LAST_DAY(`Date`))
END**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0 -
@NathanDorsch You can have more control over projections by adding a second Beast Mode series to your bar chart instead of using the Last Value Projection in Analyzer. In your case, the formula should look something like this:
sum(case when LAST_DAY(`Date`) = LAST_DAY(CURRENT_DATE()) then `Value` * (DAY(LAST_DAY(CURRENT_DATE())) - DAY(CURRENT_DATE())) / DAY(LAST_DAY(CURRENT_DATE())) else 0 end)
0
Answers
-
You can utilize a window function to calculate the estimated month depending on the number of days that have elapsed in the current month.
LAST_DAY returns the number of days in the month
Running Total:
CASE WHEN `Date` < CURRENT_DATE() THEN
SUM(SUM(`Sales`)) OVER (PARTITION BY LAST_DAY(`Date`) ORDER BY `Date`)
ENDEnd of Month Estimate:
CASE WHEN `Date` < CURRENT_DATE() THEN
SUM(SUM(`Sales`)) OVER (PARTITION BY LAST_DAY(`Date`) ORDER BY `Date`)
/
DAYOFMONTH(`Date`)
*
DAYOFMONTH(LAST_DAY(`Date`))
END**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0 -
@NathanDorsch You can have more control over projections by adding a second Beast Mode series to your bar chart instead of using the Last Value Projection in Analyzer. In your case, the formula should look something like this:
sum(case when LAST_DAY(`Date`) = LAST_DAY(CURRENT_DATE()) then `Value` * (DAY(LAST_DAY(CURRENT_DATE())) - DAY(CURRENT_DATE())) / DAY(LAST_DAY(CURRENT_DATE())) else 0 end)
0
Categories
- All Categories
- 1.7K Product Ideas
- 1.7K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 292 Workbench
- 4 Cloud Amplifier
- 8 Federated
- 2.8K Transform
- 95 SQL DataFlows
- 602 Datasets
- 2.1K Magic ETL
- 3.7K Visualize
- 2.4K Charting
- 695 Beast Mode
- 43 App Studio
- 39 Variables
- 658 Automate
- 170 Apps
- 441 APIs & Domo Developer
- 42 Workflows
- 5 DomoAI
- 32 Predict
- 12 Jupyter Workspaces
- 20 R & Python Tiles
- 386 Distribute
- 111 Domo Everywhere
- 269 Scheduled Reports
- 6 Software Integrations
- 113 Manage
- 110 Governance & Security
- 8 Domo University
- 30 Product Releases
- Community Forums
- 39 Getting Started
- 29 Community Member Introductions
- 98 Community Announcements
- Domo Community Gallery
- 4.8K Archive