Forum Discussion

Abduvali's avatar
Abduvali
Skilled Sharer
4 years ago
Solved

Reduce total count by 1 for future dates

Hi All,   I hope someone will be able to help with the following. I'm trying to reduce given total by 1 for each day or future dates untill total gets to 0. Please see sample data below: Date ...
  • v-yalanwu-msft's avatar
    4 years ago

    Hi, Abduvali ;

    You could try it.

    1.create a measure.

    total2 = 
    var _value=MAXX(ALL('Table'),[Total])- DATEDIFF(MINX(ALL('Table'),[Date]),MAX('Table'[Date]),DAY)
    return IF(_value>=0,_value)

    2.deselect show items with no data.

    The final output is shown below:

    Best Regards,
    Community Support Team_ Yalan Wu
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.