Forum Discussion

ajisharavind_99's avatar
ajisharavind_99
Advocate I
3 years ago
Solved

Cumulative Progress

Hi,   I am looking for a solution to the calculate cumulative progress based on the last date i.e., I have already calculated the cumulative progress, but when I apply the date filter, it is calcul...
  • FreemanZ's avatar
    3 years ago
    tyr to replace ALLSELECTED with ALL:
     
    CALCULATE (
        [Plan_Progress],
        FILTER (
            ALL ( Month_Table ),
            Month_Table[Date]
                <= MAX ( Month_Table[Date] )
        )
    )