Forum Discussion

NishPatel's avatar
NishPatel
Resolver II
5 years ago
Solved

Yearly Total in a Column

I have a requirement where I need to use SUM of yearly numbers in a calculation against each row within a year. I am new to this community and not sure if I am able to explain it properly or not. Fis...
  • amitchandak's avatar
    5 years ago

    NishPatel , Try one of the two measures with Rate measure

     

    calculate([Rate], allexcept(Table, Table[Year]))

     

    or

     

    calculate([Rate], filter(allselected(Table), Table[Year] = max(Table[Year])))