Jon_JnP
Sep 4, 2013, 08:14 AM
I'm trying to have a cell tell me the difference in times. We record the start and end time of each job, and it would be handy to have it calculate it for me... currently I have two ways I can think of two do it, one of which works for the most part (just annoys me lol)...
=TEXT(C9-D8,"h:mm")
This one works, but if there is an end time, and it's the last run of the day, it gives a bad value for the next one... it works, but the bad value annoys me :-)
I want something like this to work...
=IF(OR(ISBLANK(D8),ISBLANK(C9)),"",C9-D8)
The problem here is that it considers the time as a decimal I think...
Any thoughts? - Thanks in advance!
=TEXT(C9-D8,"h:mm")
This one works, but if there is an end time, and it's the last run of the day, it gives a bad value for the next one... it works, but the bad value annoys me :-)
I want something like this to work...
=IF(OR(ISBLANK(D8),ISBLANK(C9)),"",C9-D8)
The problem here is that it considers the time as a decimal I think...
Any thoughts? - Thanks in advance!