Forum Discussion
Danfountain
Helper I
2 years agoDAX with Filter and All together.
Hi all, I have these two DAX measures that seem to work as intended. So this one counts all of the records that are deleted: Mapping_Count = CALCULATE( COUNT(FACT_Mapping[MappingId...
- 2 years ago
try this
Mapping_Total_DELETED = CALCULATE(
COUNT(FACT_Mapping[MappingId]),
ALL(CalendarTable),
'FACT_Mapping'[isdeleted] = TRUE
)
Gabriele_hbto
Helper II
2 years agotry this
Mapping_Total_DELETED = CALCULATE(
COUNT(FACT_Mapping[MappingId]),
ALL(CalendarTable),
'FACT_Mapping'[isdeleted] = TRUE
)
Danfountain
Helper I
2 years agoThank you. I was obviously over complicating it!