Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
SPC_123
Frequent 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 = Consolidated

Column Name = Interaction Type

Column Name = Total Number of Attendees

Examples of interaction types   Face to Face, Virtual

I want to create a DAX expression to display/count of Total Number of Attendees, for the Interaction Type of Virtual.

I cannot use a quick measure as I need to be able to use this elsewhere and quick measure does not allow the filtering I need.

Thank you.

1 ACCEPTED SOLUTION

measure name = CALCULATE(SUM('Consolidated'[Total Number of Attendees]), FILTER('Consolidated', 'Consolidated'[Interaction Type] = "Virtual"))

Something like the above should work.


Looking for more Power BI tips, tricks & tools? Check out PowerBI.tips the site I co-own with Mike Carlo. Also, if you are near SE WI? Join our PUG Milwaukee Brew City PUG

View solution in original post

2 REPLIES 2
vik0810
Resolver V
Resolver V

Measure = CALCULATE(COUNT(Consolidated[Total Number of Attendees], Consolidated[Interaction Type] = "Virtual")

measure name = CALCULATE(SUM('Consolidated'[Total Number of Attendees]), FILTER('Consolidated', 'Consolidated'[Interaction Type] = "Virtual"))

Something like the above should work.


Looking for more Power BI tips, tricks & tools? Check out PowerBI.tips the site I co-own with Mike Carlo. Also, if you are near SE WI? Join our PUG Milwaukee Brew City PUG

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.