Forum Discussion
Anonymous
4 years agoNot applicable
Count Measure based on all filters or columns except one
So I've got a table looking something like this that lists communications that have been sent and via what method Customer ID Message Delivery Method Sent Time 1 Welcome Email AM ...
- 4 years ago
You can create a measure like
Count sent any delivery method = CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[Delivery method] ) )
johnt75
Super User
4 years agoYou can create a measure like
Count sent any delivery method =
CALCULATE (
COUNTROWS ( 'Table' ),
ALLEXCEPT ( 'Table', 'Table'[Delivery method] )
)