The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 |
---|---|
58 | |
56 | |
55 | |
50 | |
32 |
User | Count |
---|---|
172 | |
89 | |
70 | |
46 | |
45 |