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 moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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 |
|---|---|
| 36 | |
| 32 | |
| 26 | |
| 24 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 50 | |
| 31 | |
| 26 | |
| 22 |