I have a problem with my time sheet not giving me the proper value after midnight.. here is the code im using... =TEXT((E4-B4)+(I4-F4),"h:mm")
I have a problem with my time sheet not giving me the proper value after midnight.. here is the code im using... =TEXT((E4-B4)+(I4-F4),"h:mm")
Try the ABS formula. It will give you the absolute difference between 2 times. (Format result cell as hh:mm)
=ABS(A1-A2)
Or
the MOD formula
=MOD(A1-A2,1)
Last edited by Portuga; 03-21-2008 at 11:56 PM.
If you found the solution to your question. Mark the thread as "Solved"
Thank everyone that helped you with a valid solution by clicking on their![]()
There is no such thing as a problem, only a temporary lack of a solution
Please look:
Ben Van Johnson
I don't believe ABS is appropriate. If you have start time of 22:00 and end time of 06:00 then ABS would give a result of 16:00 rather than 8:00.Originally Posted by Portuga
MOD is good though, i.e.
=MOD(E4-B4,1)+MOD(I4-F4,1)
or
=E4-B4+(B4>E4)+I4-F4+(F4>I4)
in either case format result cell as h:mm [that's a better approach than using the TEXT function which gives a text string result]
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks