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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Show Non-Matching Values

Hi, I have a table with customers and their favorite food formatted as text.

 

Example 1.PNG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

I would like to select Carlos and show, in a table visual (see pic above), his non-favorite foods. How can I go about creating DAX to show this?

 

Thank for any help.

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Anonymous , the second table should have below measure with favorite food column.

 


measure =
var _tab = except(all(Table[favorite food]), allselected(Table[favorite food]))
return
calculate(count(Table[favorite food]), filter(all(Table), Table[favorite food] in _tab))

 

Do not go by value of meausre

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

CNENFRNL
Community Champion
Community Champion

Screenshot 2021-08-18 205658.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

2 REPLIES 2
CNENFRNL
Community Champion
Community Champion

Screenshot 2021-08-18 205658.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

amitchandak
Super User
Super User

@Anonymous , the second table should have below measure with favorite food column.

 


measure =
var _tab = except(all(Table[favorite food]), allselected(Table[favorite food]))
return
calculate(count(Table[favorite food]), filter(all(Table), Table[favorite food] in _tab))

 

Do not go by value of meausre

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors