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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have a three column i want a result like it select" T " from col1- and that should not contain 0 and null from col2 and col3
col1 col2 col3
A 1 null
A 2 0
T 3 0
T 0 null
T null 6
Hi @Anonymous ,
what's your meaning of "not contain 0 and null from col2 and col3",from your description, I know you want to filter col1,but I don't understand "not contain o and null", because unless you delete col2 and col3, if you filter on this table, it will show the whole row.
So can you give me your expected result? so that i can know what you want.
Best regards,
Community Support Team Selina zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
In the Query Editor, right click on the first column's heading and select "Unpivot Other Columns". Filter the Value column with the criteria >0. Does this help?
@Anonymous Maybe:
col4 =
SWITCH(TRUE(),
[col1] = "T" && [col2] > 0 && [col3] > 0, TRUE(),
FALSE()
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 58 | |
| 45 | |
| 19 | |
| 15 |