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

Fabric certifications survey

Certification feedback opportunity for the community.

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.