This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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 May 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 |
|---|---|
| 31 | |
| 25 | |
| 25 | |
| 22 | |
| 14 |
| User | Count |
|---|---|
| 61 | |
| 49 | |
| 25 | |
| 20 | |
| 20 |