This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
| ReportedDate | StartTime | EndTime | OrderNumber | WorkCenterNumber | ActualRunningTime (Hour) |
| 11-04-2023 | 11-04-2023 23:26 | 12-04-2023 0:01 | Break time | 0101-101 | 0.583333333 |
| 11-04-2023 | 11-04-2023 23:26 | 11-04-2023 23:59 | Break time | 0101-101 | 0.56 |
| 12-04-2023 | 12-04-2023 8:01 | 12-04-2023 10:05 | Other | 0101-201 | 2.066666667 |
| 12-04-2023 | 12-04-2023 21:32 | 16-04-2023 21:32 | No Schedule | 0101-101 | 96 |
| 12-04-2023 | 12-04-2023 13:26 | 12-04-2023 14:05 | Break time | 0101-201 | 0.65 |
| ReportedDate | StartTime | EndTime | OrderNumber | WorkCenterNumber | ActualRunningTime (Hour) |
| 11-04-2023 | 11-04-2023 23:26 | 11-04-2023 23:59 | Break time | 0101-101 | 0.56 |
| ReportedDate | StartTime | EndTime | OrderNumber | WorkCenterNumber | ActualRunningTime (Hour) |
| 12-04-2023 | 12-04-2023 00:00 | 12-04-2023 0:100 | Break time | 0101-101 | 0.00001 |
| 12-04-2023 | 12-04-2023 8:01 | 12-04-2023 10:05 | Other | 0101-201 | 2.066666667 |
| 12-04-2023 | 12-04-2023 21:32 | 12-04-2023 11:59 | No Schedule | 0101-101 | 96 |
| 12-04-2023 | 12-04-2023 13:26 | 12-04-2023 14:05 | Break time | 0101-201 | 0.65 |
Hi,
I already try above example but sum the running time will getting wrong result example if I filter date 12/6/2023 my start date 10/6/2023 and end date 12/6/2023 will be listed. (actual running time will be 48hrs) but with my filter it should show only 24hour.
So I am thinking something like, do checking if there are cross day between starttime and endtime automatic take max date to minus starttime (but result also might not very correct what if starttime 2days back)
Duration III =
var maxdate = MAXX(ALLSELECTED('Calendar'), 'Calendar'[DateTime])
var mindate = MINX(ALLSELECTED('Calendar'), 'Calendar'[DateTime])
var datediff = DATEDIFF(mindate, maxdate, day)
var time = if(datediff > 0 , maxdate - starttime, sum(Results[ActualRunningTime]) )
return CALCULATE( SUM(time),
filter ( Results, Results[EndTime] >= mindate
&&
Results[StartTime] <= maxdate ))
@user023 , Try a measure like with slicer on independent date table
//Date1 is independent Date table
new measure =
var _max = maxx(allselected(Date1),Date1[Date])
var _min = minx(allselected(Date1),Date1[Date])
return
calculate( sum(Table[Value]), filter('Table', 'Table'[End Time] >=_min && 'Table'[Start Time Time] <=_max))
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 25 | |
| 21 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 62 | |
| 35 | |
| 34 | |
| 24 | |
| 24 |