Forum Discussion

prabhupan's avatar
prabhupan
Helper I
9 years ago
Solved

Calculating Variance: Year on Year

Hello,    How do i calculate the variance between the IT spend year on year?   I need help with Variance type 1 & 2 given below.           
  • v-sihou-msft's avatar
    v-sihou-msft
    9 years ago

    prabhupan

     

    To calculate the variance between current year and previous year for each account, you can create a calculated column and use EARLIER() function to get the previous year context for calculation. Please refer to formula below:

     

    Variance = 
    var PreviousYearType1=CALCULATE(SUM(Table1[Type1]),FILTER(Table1,Table1[Account]=EARLIER(Table1[Account]) && Table1[Year]=EARLIER(Table1[Year])-1))
    return
    IF(PreviousYearType1=BLANK(),BLANK(),Table1[Type1]-PreviousYearType1)

     

     

    Regards,