Forum Discussion

SPC_123's avatar
SPC_123
Frequent Visitor
6 years ago
Solved

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...
  • Anonymous's avatar
    Anonymous
    6 years ago
    measure name = CALCULATE(SUM('Consolidated'[Total Number of Attendees]), FILTER('Consolidated', 'Consolidated'[Interaction Type] = "Virtual"))

    Something like the above should work.