Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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))
User | Count |
---|---|
77 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
99 | |
92 | |
50 | |
47 | |
46 |