This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register 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 April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 50 | |
| 30 | |
| 23 | |
| 23 |