Hello all.
I need help finding the difference between two times entered in C19 (start time, formatted to time) and F19 (end time, formatted to time). I need to split the results in two different cells, AI19 (hours) and AL19 (minutes).
There red will be a lot times when the users time is entered in one day and finished in another. For instance, starts at 11:00 pm and ends 1:00 am the next day.
I’ve tried to use the below but I’m not getting the desired results.
I need help finding the difference between two times entered in C19 (start time, formatted to time) and F19 (end time, formatted to time). I need to split the results in two different cells, AI19 (hours) and AL19 (minutes).
There red will be a lot times when the users time is entered in one day and finished in another. For instance, starts at 11:00 pm and ends 1:00 am the next day.
I’ve tried to use the below but I’m not getting the desired results.
Code:
=TEXT(C19-F19,”h”)
Code:
=HOUR(C19-F19)