This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi,
I have data similar to below.
| Customer | Material | Sales Value |
| 123 | ABC | 2000 |
| 123 | ABC | -2000 |
How can i remove such rows in power query? Where sales value is positive in one row for same material and customer and negative in another row for same customer and material.
Solved! Go to Solution.
Hi @Sdhn420 ,
Please try to use the following formula to add a new custom column:
=Number.Abs([Sales Value])
Then delete the Sales Value column and remove the duplicates rows:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Sdhn420 ,
Please try to use the following formula to add a new custom column:
=Number.Abs([Sales Value])
Then delete the Sales Value column and remove the duplicates rows:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Sdhn420
Please correct me if I misunderstood your question.
I usually do the below.
- Groupby customer and material by Max/Sum/Min/Avg/etc. of Sales Value
Or,
- I create one more column that only picks positive value, for instance, and "N/A" for negative.
if [Sales Value] >0 then [Sales Value] else "N/A"
Then, I filter out the "N/A" value from the newly created column.
it only remains what you want in the original Sales Value Column.
I hope it helps.
Thank you.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster.
@Jihwan_Kim I actually want to remove both the rows.
If customer and material is same and Sales value is same but one is positive and another is negative then remove both the rows.
Hi, @Sdhn420
In that case, I do by following the below steps. It is quite many steps, but I prefer using UI, instead of writing M-Code by myself.
- Duplicate the table
- in the second table, group by Customer + Material by count rows (operation)
- in the result column, only remain 1, and filter out the rest.
- The second table only contains customer lists/Matrials that have only one sales value.
- Merge the data from the first table.
It is quite a many steps process but I think this will hardly create any mistakes.
Thank you.
@Jihwan_Kim How will it work with below?
| Customer | Material | Sales Value |
| 123 | ABC | 2000 |
| 123 | ABC | -2000 |
| 123 | ABC | 2000 |
| 123 | XYZ | 1000 |
Output should be:
| 123 | ABC | 2000 |
| 123 | XYZ | 1000 |
Hi, @Sdhn420
Thank you for your feedback.
My previous process was for removing all that have more than one line. Because I understood that more than one line meant not-unique-information and I thought that I should remove all the not-unique-information.
Is the situation changed?
If I only see the first situation and second situation, can I think like group by customer/material and sum the sales value + do not show the zero value?
What will be the desirable outcome for the below?
Please help me to understand more accurately.

Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 31 | |
| 24 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 50 | |
| 33 | |
| 24 | |
| 24 |