Forum Discussion

Plantje's avatar
Plantje
Icon for Helper I rankHelper I
8 years ago
Solved

Total next to year to date value

Hi,   I have a pretty straight forward data set that I created for test purposes:   With that I figured out how to get a nice year to date: Now I would like to have two additional col...
  • quentin_vigne's avatar
    quentin_vigne
    8 years ago

    Hi Plantje

     

    It took times for me to understand but here it is : 

     

     

    Actuals Total = CALCULATE(SUM(Table1[Actuals]);ALLEXCEPT(Table1;Table1[AccountNumber];Table1[Fiscal year]))
    
     
    
    Budget Total = CALCULATE(SUM(Table1[Budget]);ALLEXCEPT(Table1;Table1[AccountNumber];Table1[Fiscal year]))

     

    Maybe you will have to replace ; by , (depend of countries)

     

    - Quentin