Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this formula in column D
=IF(B1A1,"LATE "&TEXT(SUM(B1-A1),"h:mm:ss"),"EARLY "&TEXT(SUM(A1-B1),"h:mm:ss")) "puiuluipui" wrote: 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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks alot.
"Gary Mc" wrote: Try this formula in column D =IF(B1A1,"LATE "&TEXT(SUM(B1-A1),"h:mm:ss"),"EARLY "&TEXT(SUM(A1-B1),"h:mm:ss")) "puiuluipui" wrote: 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 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
try this.... =IF(A2<B2,"Late " &TEXT(B2-A2,"hh:mm:ss"),"Early "&TEXT(A2-B2,"hh:mm:ss")) regards FSt1 "puiuluipui" wrote: 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 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks alot.
"FSt1" wrote: hi try this.... =IF(A2<B2,"Late " &TEXT(B2-A2,"hh:mm:ss"),"Early "&TEXT(A2-B2,"hh:mm:ss")) regards FSt1 "puiuluipui" wrote: 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 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One mo
=IF(A2<B2,"Late ","Early ")&TEXT(ABS(A2-B2),"hh:mm:ss") puiuluipui wrote: 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 -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks alot.
"Dave Peterson" wrote: One mo =IF(A2<B2,"Late ","Early ")&TEXT(ABS(A2-B2),"hh:mm:ss") puiuluipui wrote: 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 -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
where can I see my question and answer? Yesterday I ask a question | Excel Discussion (Misc queries) | |||
question | Excel Discussion (Misc queries) | |||
Question | New Users to Excel | |||
Newbie Question - Subtraction Formula Question | Excel Discussion (Misc queries) | |||
The question is an excel question that I need to figure out howto do in excel. | Excel Worksheet Functions |