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
I have a duplicate in the "Product" column. I want to have a new column without duplicates, the new column must look like this:
- If the sum of the number of each duplicate product is greater than 1, the new column must return the number 1 (For example: Product B : 0.3 + 1= 1.3 ==> 1).
- If the sum of the number of each product is less than 1, the new column must return the sum of the products (for example: product C : 0.2 + 0.6= 0.8 ==> 0.8).
Data:
Result:
Thanks for your help
Solved! Go to Solution.
Table.Group(your_table, "Product", {"Number", each List.Min({1, List.Sum(_[Number])})})
Table.Group(your_table, "Product", {"Number", each List.Min({1, List.Sum(_[Number])})})
Hi @AlienSx ,
Thank you very much, it worked.
I also have a question: What should I change in the code
- If the sum of the number of each duplicate product is greater than 1, the new column must return the number 1 (For example: Product B : 0.3 + 1= 1.3 ==> 1).
-If the sum of the numbers of each product is less than 1, the new column must return the maximum (for example: product C: 0.2 & 0.6 ==> 0.6).
Result:
Table.Group(
your_table, "Product",
{"Number", each
if List.Sum([Number]) >= 1 then 1 else List.Max([Number])
})
HiAlienSx,
Thank you. I tried it, but I got the following error message:
Expression.Error: A cyclical reference was recognised during the evaluation.
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 |