Forum Discussion
AldoJavier26
4 years agoFrequent Visitor
Forecast help. Using remaining months from prior year for current full year forecast.
Forecast help. Using remaining months from prior year for current full year forecast. I am using prior year actuals as the forecasting portion for the remaining months to complete my current year ...
- 4 years ago
Sorry, I misunderstood the task. Try:
Forecast = IF( MAX ( 'Date'[Fiscal Year] ) <= YEAR ( TODAY() ), [.Sum Revenue], SUMX ( ADDCOLUMNS ( SUMMARIZE ( 'Date', 'Date'[Fiscal Year], 'Date'[Month Name] ), "_forecast", [Revenue FC based on Month Today] ), [_forecast] ) )
AldoJavier26
4 years agoFrequent Visitor
Paul - Fiscal year 2021 & 2020, dont seem to show the full year actuals with this measure. Wanting the measure to give me these results:
2020 = $60,000
2021 = $120,000
2022 = $150,000
PaulDBrown
4 years agoCommunity Champion
Sorry, I misunderstood the task. Try:
Forecast =
IF( MAX ( 'Date'[Fiscal Year] ) <= YEAR ( TODAY() ),
[.Sum Revenue],
SUMX (
ADDCOLUMNS (
SUMMARIZE ( 'Date', 'Date'[Fiscal Year], 'Date'[Month Name] ),
"_forecast", [Revenue FC based on Month Today]
),
[_forecast]
)
)
- AldoJavier264 years agoFrequent Visitor
Thank you so much !