Appreciate your help, I am trying to create a measure that provides a running total since inception using a text field,
CALCULATE(COUNTA([Change Requests]) ,FILTER(ALL(Cal),
Cal[Date] <= MAX( [Date] ) )),
the problem occurs when I am using Slicers to show a year and month, if there are no entries for that month it shows the running total as a zero, and not the running total to date.
Row Labels | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec |
Approved by PG | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 0 |
Approved by SC | 5 | 12 | 21 | 22 | 24 | 39 | 48 | 57 | 64 | 68 | 78 | 83 |
Approved by WG | 0 | 0 | 0 | 0 | 1 | 3 | 4 | 5 | 6 | 7 | 0 | 8 |
Advice requested please.
Andy