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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
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.