Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi Expert
Need a dax measure to give me the distinct count based in ListID and the sum of the PlannedProcedureTime
see sample data
ListID | PlannedProcedureTime |
7659 | 120 |
7659 | 120 |
7647 | 30 |
7647 | 30 |
7700 | 60 |
7700 | 60 |
7700 | 60 |
7700 | 60 |
7700 | 60 |
Solved! Go to Solution.
@Anonymous Could you please share expected result in sample table
Expected Result
istID | PlannedProcedureTime |
7659 | 120 |
7647 | 30 |
7700 | 60 |
@Anonymous try this
Hi thanks - but can we do this as a meseaure as i need to use it for other visuals and metrics. please.
@Anonymous try this
Measure = max(Yourtable[PlannedProcedureTime])
User | Count |
---|---|
64 | |
59 | |
47 | |
33 | |
32 |
User | Count |
---|---|
84 | |
75 | |
56 | |
50 | |
44 |