Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi, I have a table with customers and their favorite food formatted as text.
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.
Solved! Go to Solution.
@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
| 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! |
| 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! |
@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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 102 | |
| 79 | |
| 57 | |
| 51 | |
| 46 |