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] ) )
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]
)
)
AldoJavier26
4 years agoFrequent Visitor
Thank you so much !