Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a way to display negative time numbers? i.e. 64:00 - 84:00 hours
= -20:00 hours |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assume times are entered in A1 (first time) and B1 (second time).
C1: =IF(B1A1,"- ","+ ")&TEXT(ABS(A1-B1),"[hh]:mm") That being said, since it is now a text cell, in order to manipulate this time, you would need something like the following. Assume cell B3 has time that needs to be modified by your time in C1. C3: =B3+MID(C1,3,LEN(C1)-2)*IF(LEFT(C1,1)="-",-1,1) It works.... -- John C "JT" wrote: Is there a way to display negative time numbers? i.e. 64:00 - 84:00 hours = -20:00 hours |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try to check 1904 style dates in ToolsOptionsCalculation!
Regards, Stefi JT ezt Ć*rta: Is there a way to display negative time numbers? i.e. 64:00 - 84:00 hours = -20:00 hours |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See answer in your other thread.
Regards, Fred. "JT" wrote in message ... Is there a way to display negative time numbers? i.e. 64:00 - 84:00 hours = -20:00 hours |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Negative time numbers | Excel Worksheet Functions | |||
Set negative numbers to zero. Do not calculate with negative valu | Excel Discussion (Misc queries) | |||
change 2000 cells (negative numbers) into positive numbers | Excel Worksheet Functions | |||
Excel Formula - Add column of numbers but ignore negative numbers | Excel Worksheet Functions | |||
convert negative numbers to positive numbers and vice versa | Excel Worksheet Functions |