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
Anonymous
Not applicable

Filter table to get rows based on distinct values in column

Hi all!

 

I had searched but do not seem to find a solution. Please help?

 

I have the following table (sample) and need a Measure to sum up the duration for  distinct IDs only i.e. (10 + 13 + 5 + 4 = 32 minutes). How do I do that?

 

ID           Duration (minutes)

101         10

101         10

130         13

130         13

130         13

142         5

165         4

165         4

 

Thanks in advance!

 

Regards,

Yee Pin

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @Anonymous 

Assuming duration is always the same for a specific ID:

Measure =
SUMX ( DISTINCT ( Table1[ID] ), CALCULATE ( MIN ( Table1[Duration] ) ) )

 

View solution in original post

3 REPLIES 3
AlB
Super User
Super User

Hi @Anonymous 

Assuming duration is always the same for a specific ID:

Measure =
SUMX ( DISTINCT ( Table1[ID] ), CALCULATE ( MIN ( Table1[Duration] ) ) )

 

Anonymous
Not applicable

@AI  Awesome! Thank you so much!!

Anonymous
Not applicable

Hi,

You can create a measure as below. This will work even if the values are different.

 

total =
VAR distinct_sum = SUMX( SUMMARIZE( Data, Data[ID], Data[Duration] ), Data[Duration] )
RETURN
distinct_sum

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.