Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Ok, n00b here. My searching is weak so I didn't find anything that satisfied my need.
I have a dataset of work items. I have a lead time column present on each record. It is in minutes, and I want to create a measure that displays lead time in hours. I want that measure to be (in pseudo code):
lead time (hrs) = lead time / 60
I'm finding this difficult to do in DAX. What is your advice?
Solved! Go to Solution.
Hi @jugisahunk,
Please refer to below measure:
lead time (hrs) = SELECTEDVALUE(Dataset[lead time])/ 60
It does not work... I have a column of counts and need to divide ach value by a constant - this soln does not work
Hi @jugisahunk,
Please refer to below measure:
lead time (hrs) = SELECTEDVALUE(Dataset[lead time])/ 60
This gives me what I need :). Unfortunately, I'm getting an error when I try to accept this as a solution.
| User | Count |
|---|---|
| 49 | |
| 37 | |
| 33 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 132 | |
| 99 | |
| 56 | |
| 37 | |
| 37 |