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.1K Product Ideas
- 1.1K Ideas Exchange
- 1.2K Connect
- 970 Connectors
- 259 Workbench
- Cloud Amplifier
- 1 Federated
- 2.4K Transform
- 76 SQL DataFlows
- 502 Datasets
- 1.8K Magic ETL
- 2.7K Visualize
- 2.2K Charting
- 379 Beast Mode
- 21 Variables
- 487 Automate
- 104 Apps
- 379 APIs & Domo Developer
- 6 Workflows
- 22 Predict
- 6 Jupyter Workspaces
- 16 R & Python Tiles
- 319 Distribute
- 67 Domo Everywhere
- 252 Scheduled Reports
- 59 Manage
- 59 Governance & Security
- 1 Product Release Questions
- 5K Community Forums
- 37 Getting Started
- 23 Community Member Introductions
- 64 Community Announcements
- 4.8K Archive