Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Cumulative Sum and Cumulative Sum Percentage

Hi, I have a dataset which contains a case number, opended date, response target, response deviation in minutes. I added a custom column called First Response Calc for calculating the response targe...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi  Anonymous ,

    Modify the measure to the following form:

    1. Create measure.

    Measure =
    var _1=COUNTX(FILTER(ALL('Sheet1'),'Sheet1'[_Histo FRT]<=MAX('Sheet1'[_Histo FRT])),[CaseNumber])
    var _2=COUNTX(ALL('Sheet1'),'Sheet1'[_Opened Cases])
    return
    DIVIDE(_1,_2)

    2. Result:

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly