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 all,
intent to remove rows based on columns value.
Already added a conditional columns "toberemove", where if previous column didn't meet the criteria, a "0" will show here.
then apply
Table.RemoveMatchingRows(#"Reordered Columns",{[toberemove = 0]})
It's not removing any rows containing 0.
where is my mistake?
thanks
Watson
Solved! Go to Solution.
Note you could just filter to where your column <> 0, but try this syntax instead. You need to put the full row (values for all fields) in the list to get it to work w/o the 3rd parameter (or you can just add the specific field to look at like this).
Table.RemoveMatchingRows(#"Reordered Columns",{[toberemove = 0]}, "toberemove")
Pat
Note you could just filter to where your column <> 0, but try this syntax instead. You need to put the full row (values for all fields) in the list to get it to work w/o the 3rd parameter (or you can just add the specific field to look at like this).
Table.RemoveMatchingRows(#"Reordered Columns",{[toberemove = 0]}, "toberemove")
Pat
It works! The unwanted rows are now disapeared in the pivot chart. Thank you !!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
17 | |
9 | |
8 | |
7 | |
7 |