Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 :
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!
Solved! Go to Solution.
@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])
Is this OK?
or
@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])
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |