Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have Field
DurationTime(Min) :
Morning shift time 06.00-13.59 hrs. Afternoon shift 14.00-21.59 hrs. Night shift 22.00-05.59 hrs.
Want to calculate time from TimeStartDowntime to TimeFinishDowntime Calculated in minutes by shift.
example
TimeStartDowntime ='11:42:40' TimeFinishDowntime ='23:03:38' Want to calculate by shift.
Morning shift StartDowntime ='11:42:40' - '13.59' = ? Min
Afternoon shift '14.00'- '21.59' = ? Min
Night shift '22.00 '- FinishDowntime ='23:03:38' = ? Min
The unit is minutes.
@Sxbbb Do you want Minutes by shift like Morning Shift Minutes, Afternoon Shift minutes.. or do you want overall minutes?
want Minutes by shift like Morning Shift Minutes, Afternoon Shift minutes..
Do I have to do field shift as well?
for minutes difference-
((Hour(TimeFinishDowntime))*60+Minute(TimeFinishDowntime))
-
(( Hour(TimeStartDowntime))*60+Minute(TimeStartDowntime))
for shifts wise use interval match
I want to bring time TimeStartDowntime to TimeFinishDowntime is divided into shifts. What should I do?
I need shift field = Morning Afternoon Night
EX
What do I have to do?
EX
The shifts are morning, afternoon, and night.
I hope it is helpful