Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have a problem with PowerQuery. So, I need to apply Distinct function in my table.
But with one condition: repeatable values should be deleted if their value is greater than 0.
Please help me to write a fuction on PowerQuery M. Maybe it's possible to use IF-expression?
Example, if 'ID'>0 then Table.Distinct(#"", {"ID"}) else 0.
Thanks!
Solved! Go to Solution.
this should work
Table.FromRows(List.Distinct(Table.ToRows(Source),each if _{0}=0 then Text.NewGuid() else _{0}))
Not quite. For example, here is a column:
0 |
0 |
20155 |
20156 |
20157 |
20157 |
20157 |
0 |
20158 |
20159 |
Needs to delete duplicated values 20157 (two times). Nulls should stay in a column as they are.
Here is a required result:
0 |
0 |
20155 |
20156 |
20157 |
0 |
20158 |
20159 |
this should work
Table.FromRows(List.Distinct(Table.ToRows(Source),each if _{0}=0 then Text.NewGuid() else _{0}))
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
18 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
25 | |
10 | |
10 | |
9 | |
6 |