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
I am fairly new to Power Bi. I've completed a few visualizations but nothing that has challenged me to use specific row and column criteria to create a new conditional column. My challenge is to create a count of objects based on certain conditions. What I have assets called "Brass Tag" with components called "Nozzels." Some "Nozzles" have multiple attributes called "TML" in this instance. I'm try to determine how many "Nozzles" have multiple "TMLs". The multiple "TMLs" is indicated by the "Brass Tag" and the "Nozzle" being the same info while "TML" column would list 01, 02, etc.
How would I create a conditional column with this info which would just say simply "multiple" if the "Brass Tag" value and "Nozzle Number" value are the same but "TML Number" has more than one entry value?
Thanks for the help.
Solved! Go to Solution.
Hi @frank_fillingim
Try this.
VAR x = COUNTROWS(
CALCULATETABLE(
YourTable,
ALLEXCEPT(YourTable, YourTable[Brass Tag], YourTable[Nozzle Number])
)
) > 1
RETURN
IF( x, "multiple", "single" )Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @frank_fillingim
Try this.
VAR x = COUNTROWS(
CALCULATETABLE(
YourTable,
ALLEXCEPT(YourTable, YourTable[Brass Tag], YourTable[Nozzle Number])
)
) > 1
RETURN
IF( x, "multiple", "single" )Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 71 | |
| 45 | |
| 33 | |
| 24 | |
| 23 |