I can't use 1904. I have a formula that almost works
I am doing everything in Military time. This is the finial peice of the puzzle.
Our shift begins at 18:00 and ends up until 7:00 (am) or so depending onwork
A1 I have a time (Projected-Estimate of when all work should be done)
A2 I have a time (Actual- Time the work was actually complete.)
A3 Will be show the difference in either a Negative or Positive time.
Three Examples: (The first two work as is and are perfect)
A1 2:11 (Projected)
A2 2:23 (Actual)
A3 0:11 (Difference) 11 min over projected. (Formula below)
=IF(A1 < A2,TEXT(MAX($A$1:$A$2)-MIN($A$1:$A$2),"h:mm"),TEXT(MAX($A$1:$A$2)-MIN($A$1:$A$2),"-h:mm"))
A1 2:23 (Projected)
A2 2:11 (Actual)
A3 -0:11 (Difference) 11min under projected.
So far this is excellent. This issue comes when:
A1 23:22 Projected
A2 1:22 Actual
A3 -22:00 which should be 2:00
I know =mod will work for that case but not if it were 23:00 projected and 22:00 actual.
So with the formula that I am using =IF(A1 < A2,TEXT(MAX($A$1:$A$2)-MIN($A$1:$A$2),"h:mm"),TEXT(MAX($A$1:$A$2)-MIN($A$1:$A$2),"-h:mm"))
How do I get it to tell be the difference while showing a - or + number in military time if it transends the next day? I was trying to add more "if" statements in there but can't get it to work.
Thanks for attempting this if it is possible.
Bookmarks