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
AnthonyXelya
Helper II
Helper II

DistinctCount with condition, 2nd version!

I also have a question with DistinctCount : I have a table with downtimes impacting several customers, I would like to have the sum of downtimes durations regardless of how many customers they impact :

For example : 

AnthonyXelya_0-1614073154006.png

I would like to have 70 here : 10 + 15 + 45

and not 90 (the sum of every lines) or 18 (90/5).

How can I have that with a measure?

Thank you!

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@AnthonyXelya , Try measure in one of the two ways

 

sumx(summarize(Table, Table[downtimeID], Table[downtimeDuration]),[downtimeDuration])

 

or

 

sumx(summarize(Table, Table[downtimeID], "_1", max(Table[downtimeDuration])),[_1])

View solution in original post

jameszhang0805
Resolver IV
Resolver IV

Is this OK?

jameszhang0805_0-1614074155213.png

or 

jameszhang0805_0-1614074513762.png

 

View solution in original post

2 REPLIES 2
jameszhang0805
Resolver IV
Resolver IV

Is this OK?

jameszhang0805_0-1614074155213.png

or 

jameszhang0805_0-1614074513762.png

 

amitchandak
Super User
Super User

@AnthonyXelya , Try measure in one of the two ways

 

sumx(summarize(Table, Table[downtimeID], Table[downtimeDuration]),[downtimeDuration])

 

or

 

sumx(summarize(Table, Table[downtimeID], "_1", max(Table[downtimeDuration])),[_1])

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.

Top Solution Authors