Hello,
I got the following case:
time slots:
From. To. Multiplier
9:00 19:59 1
20:00 21:59 2
22:00 23:59 3
0:00 6:59 4
7:00 8:59 2
I would like to compute the sum of the minutes of the time between starttime and endtime in each time slot multiplied by their multiplier.
So for example:
starttime = 08:11
endtime = 14:16
will lead to 48 minutes x 1.5 + 316 minutes x 1 = 388.
Can anyone help me writing a code for this?
I got the following case:
time slots:
From. To. Multiplier
9:00 19:59 1
20:00 21:59 2
22:00 23:59 3
0:00 6:59 4
7:00 8:59 2
I would like to compute the sum of the minutes of the time between starttime and endtime in each time slot multiplied by their multiplier.
So for example:
starttime = 08:11
endtime = 14:16
will lead to 48 minutes x 1.5 + 316 minutes x 1 = 388.
Can anyone help me writing a code for this?