Forum Discussion

ValueCreate's avatar
ValueCreate
Helper I
6 years ago
Solved

Creating 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 ...
  • Anonymous's avatar
    Anonymous
    6 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