if question

P

puiuluipui

Hi, i have something like this

A B D
8:00:00 8:05:14 LATE 00:05:14
8:00:00 7:53:00 EARLY 00:07:00

I need the same formula to work for late and for early.
If i write something smaller than 8:00:00 to show early and the difference.
If i write something bigger than 8:00:00 to show late, and the diferences.
How can i do this?
Thaks in advance
 
G

Gary Mc

Try this formula in column D
=IF(B1>A1,"LATE "&TEXT(SUM(B1-A1),"h:mm:ss"),"EARLY
"&TEXT(SUM(A1-B1),"h:mm:ss"))
 
F

FSt1

hi
try this....
=IF(A2<B2,"Late " &TEXT(B2-A2,"hh:mm:ss"),"Early "&TEXT(A2-B2,"hh:mm:ss"))

regards
FSt1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Formatting time 2
If 4
sum text&numbers 10
sumif 2
If Functions Time 13
Need help 3
Formating time 2
Pls help for Simple Calculation 1

Top