Forum Discussion
ValueCreate
Helper I
6 years agoCreating Forecasted Ratios using Historical & Forecasted Data
Hi, this is a follow up to my question yesterday Now that I was able to calculate all the forecasted averages for the ratios, I am running into the issue of projecting the first years forecasted ...
- Anonymous6 years ago
Hi ValueCreate ,
Please create one calculated column as below:
Future Total Commissions & Fees = CALCULATE(MAX('Historical'[Total Commissions & Fees]), FILTER('Historical','Historical'[ClientID]='Forecasted'[ClientID] &&YEAR('Historical'[Date])+1=YEAR('Forecasted'[Date]) &&MONTH('Historical'[Date])=MONTH('Forecasted'[Date]) &&DAY('Historical'[Date])=DAY('Forecasted'[Date]))) *'Forecasted'[Future TCFOG]If you want to calculate the value for the future (after 2021), you can replace the historical table in the above formula with forecast table...
Best Regards
Rena
Anonymous
6 years agoNot applicable
Hi ValueCreate ,
Please create one calculated column as below:
Future Total Commissions & Fees =
CALCULATE(MAX('Historical'[Total Commissions & Fees]),
FILTER('Historical','Historical'[ClientID]='Forecasted'[ClientID]
&&YEAR('Historical'[Date])+1=YEAR('Forecasted'[Date])
&&MONTH('Historical'[Date])=MONTH('Forecasted'[Date])
&&DAY('Historical'[Date])=DAY('Forecasted'[Date])))
*'Forecasted'[Future TCFOG]If you want to calculate the value for the future (after 2021), you can replace the historical table in the above formula with forecast table...
Best Regards
Rena
ValueCreate
Helper I
6 years agoAnonymous Thanks! Am I able to keep all of the forecasted data in the same column that was calculated above (that is ideal) or would I have to create a new column for the forecasted data (2021-2025)?