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
Hi good day,
Can anyone help me on filtering the Power Query, from my table i have a Rank column and Daily Progress. What I required is
- If the Rank is equal to 1 and the Daily Progress is equal to negative then hide it from the table.
Thank you
Solved! Go to Solution.
Hi @AllanBerces , Try These please
Open Power Query, select your table, and go to the Filter Rows option.
Set the condition: Rank is not equal to 1 OR Daily Progress is greater than or equal to 0.
OR
Use Power Query Formula
Table.SelectRows(Source, each not ( [Rank] = 1 and [Daily Progress] < 0 ))
Please Try These and if this post helped please do give a kudos and accept this as a solution
Thanks In Advance
Hi @AllanBerces , Try These please
Open Power Query, select your table, and go to the Filter Rows option.
Set the condition: Rank is not equal to 1 OR Daily Progress is greater than or equal to 0.
OR
Use Power Query Formula
Table.SelectRows(Source, each not ( [Rank] = 1 and [Daily Progress] < 0 ))
Please Try These and if this post helped please do give a kudos and accept this as a solution
Thanks In Advance
Sure No Problem please do give a kudos
Thanks In Advance
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 |
|---|---|
| 16 | |
| 12 | |
| 9 | |
| 7 | |
| 6 |