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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
saracaballero
Frequent Visitor

Sum of values based on distinct values in other column

Hello,

 

I have a table with two columns, amount_total, and so_ref:Capture.PNG

As you can see from the table, I have repeated so_ref. Thus, I would want to sum the amount_total when the so_ref is distinct. 


Could you help me, please?

 

Thank you very much,

Sara

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @saracaballero 

Do you mean you want to sum across amount_total but adding the ones for which so_ref is repeated only once? If so, create a measure and place it in a card visual:

Measure = SUMX( DISTINCT(Table1[so_ref]),
                CALCULATE(DISTINCT(Table1[amount_total]))
               )

Please mark the question solved when we get to the solution and consider kudoing if posts are helpful.

Cheers  Datanaut

View solution in original post

2 REPLIES 2
Ani1991
Resolver III
Resolver III

Hi @saracaballero ,

 

You can try the below code.

DISTSUM = SUMX(DISTINCT(SO[SO Number]),CALCULATE(AVERAGE(SO[Total ref])))

Hope this helps!!

 

Regards,

Ani

AlB
Super User
Super User

Hi @saracaballero 

Do you mean you want to sum across amount_total but adding the ones for which so_ref is repeated only once? If so, create a measure and place it in a card visual:

Measure = SUMX( DISTINCT(Table1[so_ref]),
                CALCULATE(DISTINCT(Table1[amount_total]))
               )

Please mark the question solved when we get to the solution and consider kudoing if posts are helpful.

Cheers  Datanaut

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.