Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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
User | Count |
---|---|
8 | |
6 | |
6 | |
5 | |
5 |
User | Count |
---|---|
9 | |
8 | |
6 | |
6 | |
6 |