Hello
Would one of you genius out there please help me out with a formula?
There is one cell that needs to change its Date & Time based on the value of a previous one.
But it only needs to add the date & time difference between those 2 cells IF result is above 132hrs (only add whatever is above 132hrs)
Hopefully someone can work it out.
Cheers
Would one of you genius out there please help me out with a formula?
There is one cell that needs to change its Date & Time based on the value of a previous one.
But it only needs to add the date & time difference between those 2 cells IF result is above 132hrs (only add whatever is above 132hrs)
Hopefully someone can work it out.
Cheers
NEW - D&T Formula Update.xlsx | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | |||
1 | ||||||||||
2 | Initial Date | 1/09/2023 | ||||||||
3 | Initial Time | 9:00 | ||||||||
4 | 1st Local Time Difference | 0 | ||||||||
5 | Expected Date & Time (TU) | 6/09/2023 9:00 | ||||||||
6 | Recommended Date & Time (TU) | 6/09/2023 9:00 | ||||||||
7 | Actual Start Date (TU) | 6/09/2023 | ||||||||
8 | Actual Start Time (TU) | 21:08 | ||||||||
9 | Start Original Date & Time (TU) | 6/09/2023 21:08 | ||||||||
10 | Hours Since Initial (120 +/-12hrs) | 132:15 | ||||||||
11 | 2nd Local Time Difference | 0 | ||||||||
12 | Expected Date & Time (V) | 12/09/2023 9:00 | <<<- How to add date & time difference to this cell only if C7+C8>132hrs (only for the time above 132hrs) | |||||||
13 | Recommended Start Date & Time (V) | 12/09/2023 9:00 | / would something like this work? =(C2+C3)+264/24+IF(C7+C8)>=132/24 | |||||||
14 | Actual Start Date (V) | 12/09/2023 | ||||||||
15 | Actual Start Time (V) | 9:00 | ||||||||
16 | Start Time (V) | 12/09/2023 9:00 | ||||||||
17 | Total Time from Initial (Min 264hrs) | 264:15 | ||||||||
18 | ||||||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C5 | C5 | =(C2+C3)+120/24 |
C6,C13 | C6 | =C5+(C4/24) |
C9,C16 | C9 | =(C7+C8)-(C4/24) |
C10 | C10 | =MROUND(C9-(C2+C3),15/(60*24)) |
C12 | C12 | =(C2+C3)+264/24 |
C17 | C17 | =MROUND(C16-(C2+C3)+IF(C10>=(132/24),C10-132/24,0),15/(60*24)) |
Cells with Data Validation | ||
---|---|---|
Cell | Allow | Criteria |
F3 | List | =Sheet2!$B$4:$B$12 |
F6 | List | =Sheet2!$B$4:$B$12 |
C4 | List | =Sheet2!$B$2:$B$14 |
C11 | List | =Sheet2!$B$2:$B$14 |