Forum Discussion
sparkymark75
7 years agoFrequent Visitor
Using DAX to get a cumulative total using measures
I have the following measures defined in a dataset; DOAs = CALCULATE(COUNT('Incident'[TicketNumber]),'Incident'[new_installoutcome] = "100000000")
FOAs = CALCULATE(COUNT('Incident'[TicketNumber])...
- 7 years ago
Hi sparkymark75
You may try below measure to get the cumulative total of a measure.For example:
Measure = CALCULATE ( [DOAs], FILTER ( ALL ( Incident ), Incident[date] <= MAX ( Incident[date] ) ) )Regards,
v-cherch-msft
7 years agoMicrosoft Employee
Hi sparkymark75
You may try below measure to get the cumulative total of a measure.For example:
Measure =
CALCULATE (
[DOAs],
FILTER ( ALL ( Incident ), Incident[date] <= MAX ( Incident[date] ) )
)
Regards,