Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Tito
Helper IV
Helper IV

Duplicated

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:

Data.png

Result:

Result.png

 Thanks for your help

 

 

1 ACCEPTED SOLUTION
AlienSx
Super User
Super User

Table.Group(your_table, "Product", {"Number", each List.Min({1, List.Sum(_[Number])})})

View solution in original post

6 REPLIES 6
AlienSx
Super User
Super User
AlienSx
Super User
Super User

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:

Result1.png

@Tito 

Table.Group(
        your_table, "Product", 
        {"Number", each 
            if List.Sum([Number]) >= 1 then 1 else List.Max([Number])
        })

Hi @AlienSx 

Thank you very much. It has worked. Perfect 👏

HiAlienSx,

Thank you. I tried it, but I got the following error message:

Expression.Error: A cyclical reference was recognised during the evaluation.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.