Forum Discussion
SPC_123
6 years agoFrequent Visitor
DAX with filter question
I have a basic question. I would like to create a measure for a filtered value of a column, providing/displaying the total number of attendees for a particular ‘interaction type’. Table Name = Cons...
- Anonymous6 years ago
measure name = CALCULATE(SUM('Consolidated'[Total Number of Attendees]), FILTER('Consolidated', 'Consolidated'[Interaction Type] = "Virtual"))Something like the above should work.
Anonymous
6 years agoNot applicable
measure name = CALCULATE(SUM('Consolidated'[Total Number of Attendees]), FILTER('Consolidated', 'Consolidated'[Interaction Type] = "Virtual"))
Something like the above should work.