Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello All,
Trying to get RemoveMatchingRows to work:
Table.RemoveMatchingRows(table as table, rows as list, optional equationCriteria as any) as table
I have a table of general ledger data that has the following columns:
Account #, Cost Center, Year, Company, January, February, March, April, May, June, July, August, September, October, November, December
I want to remove rows where each column January - December = 0. I've done this another way (did a keep rows where each does not equal 0 OR next row does not equal 0, etc.), could've also created a column that takes the absolute value of each column, but I would like to figure out how to use the Table.RemoveMatchingRows.
I tried this equation:
Table.RemoveMatchingRows(#"Calculated Text Length",{[January = 0], [February = 0], [March = 0], [April = 0], [May = 0], [June = 0], [July = 0], [August = 0], [September = 0], [October = 0], [November = 0], [December = 0]})
Is it not working because I don't have the "optional equation criteria"? I tried just Table.RemoveMatchingRows(#"Calculated Text Length",{[January = 0]}, "January" and that filtered out rows, but my original did not filter out any.
Solved! Go to Solution.
I don't think you need any optional equation in this case.
Try
Table.RemoveMatchingRows(#"Calculated Text Length",{[January = 0, February = 0, March = 0, April = 0, May = 0, June = 0, July = 0, August = 0, September = 0, October = 0, November = 0, December = 0]})
Hi @Anonymous ,
Have you solved your problem with the suggestion of @HotChilli ?
If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please share some data sample and your desired output so that we could help further on it.
Best Regards,
Cherry
I don't think you need any optional equation in this case.
Try
Table.RemoveMatchingRows(#"Calculated Text Length",{[January = 0, February = 0, March = 0, April = 0, May = 0, June = 0, July = 0, August = 0, September = 0, October = 0, November = 0, December = 0]})
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |