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

calculation with several filters

hello!

 

I am struggling to make a measure with the data I have:

OPERATORHOURUNIT ID (unique values)
18123
18111
28145
29172
29159
310658
310221

 

I would need to do this calculation : divide the sum of unit ID which is a unique value per row by the sum of hours by user. The idea is to divide the sum of total units by the amount of total hours.

 

Thanks!

1 ACCEPTED SOLUTION

@Anonymous , Try like

divide(sum(Table[UNIT ID]), Countx(summarize(Table, Table[OPERATOR],Table[HOUR]),[HOUR]))

 

or

 

divide(Count(Table[UNIT ID]), Countx(summarize(Table, Table[OPERATOR],Table[HOUR]),[HOUR]))

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

this was the final solution:

 

divide(Distinctcount(Table[UNIT ID]), Countx(summarize(Table, Table[OPERATOR],Table[HOUR]),[HOUR]))

 

Thanks amitchandak!

Anonymous
Not applicable

hello amitchandak!

 

In the example that I corrected so it is more clear, the desired output is: sum units (7) / sum different hours by user (4):

user 1: 1 hour

user 2: 2 hours

user 3: 1 hour

 

I am going to try your measure. Thanks!

@Anonymous , Try like

divide(sum(Table[UNIT ID]), Countx(summarize(Table, Table[OPERATOR],Table[HOUR]),[HOUR]))

 

or

 

divide(Count(Table[UNIT ID]), Countx(summarize(Table, Table[OPERATOR],Table[HOUR]),[HOUR]))

amitchandak
Super User
Super User

@Anonymous , Expected output is not clear try a measure

 

divide(sum(Table[UNIT ID]), sumx(summarize(Table, Table[OPERATOR],Table[HOUR]),[HOUR]))

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