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
marijane
Helper I
Helper I

Sum only once per distinct id

Hi everyone,

 

I want to sum hours only once per id using dax.
For example, in this table above the expected result of the measure will be 89 : 27(id1) + 30(id2) +30(id3) + 2(id4)
The summarize function with sumx should be avoided because my original table has much more than one million rows and I think will be very slow with this approach.

Can you help?
Thank you very much for your time.

idhours
127
230
230
330
330
330
330
42
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@marijane , summarize or values are the options you can use

Try values with sumx

 

sumx(Values(Table[ID]), calculate(max(Table[Hour])))

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@marijane , summarize or values are the options you can use

Try values with sumx

 

sumx(Values(Table[ID]), calculate(max(Table[Hour])))

i love you.

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.