Forum Discussion

unnijoy's avatar
unnijoy
Post Prodigy
6 years ago
Solved

YTD Attrition

I am trying to find the YTD Attrion. Below is the Sample data. I tried using Total YTD and DatesYTD function But these are not gving me the correct values. Please help.   Month Attrition Jan...
  • Anonymous's avatar
    Anonymous
    6 years ago

    Hi unnijoy ,

     

    Do you want to calculate an accumulated result?

     

    If yes, Plesae try the below measure:

     

    measure = calculate(sum(value),filter(all(date),date <= max(date)))

     

    Aiolos Zhao