Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have two cells that carry two different times as follow
cell A1 has 00:05:00 cell A2 has 00:04:00 cell A3 should display the difference in negative way(-00:01:00). I only get ##### instead of the answer in cell A3 and a message reads (negative dates or times are displayed as # # # #) Your help will much appricated. thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Change to the 1904 date system
ToolsOptionsCalculation, and check the 1904 date system. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Amr Shehata" <Amr wrote in message ... I have two cells that carry two different times as follow cell A1 has 00:05:00 cell A2 has 00:04:00 cell A3 should display the difference in negative way(-00:01:00). I only get ##### instead of the answer in cell A3 and a message reads (negative dates or times are displayed as # # # #) Your help will much appricated. thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Bob for reply. It worked fine but the other problem now that it did
change all other dates on the workbook to year 2002 instead of 2006. It is the time that I need to display and not the date. Please let me know if there is any work around it. Kind regards, Amr Shehata "Bob Phillips" wrote: Change to the 1904 date system ToolsOptionsCalculation, and check the 1904 date system. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Amr Shehata" <Amr wrote in message ... I have two cells that carry two different times as follow cell A1 has 00:05:00 cell A2 has 00:04:00 cell A3 should display the difference in negative way(-00:01:00). I only get ##### instead of the answer in cell A3 and a message reads (negative dates or times are displayed as # # # #) Your help will much appricated. thanks |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
you can reset them all with a simple macro
For each cell In Activesheet.UsedRange If Isdate(cell.Value) Then cell.Value = DateSerial(Year(cell.Value)+4, Month(cell.Value), Day(*cell.Value) End If Next cell All dates created from now on will be okay anyways. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Amr Shehata" wrote in message ... Thanks Bob for reply. It worked fine but the other problem now that it did change all other dates on the workbook to year 2002 instead of 2006. It is the time that I need to display and not the date. Please let me know if there is any work around it. Kind regards, Amr Shehata "Bob Phillips" wrote: Change to the 1904 date system ToolsOptionsCalculation, and check the 1904 date system. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Amr Shehata" <Amr wrote in message ... I have two cells that carry two different times as follow cell A1 has 00:05:00 cell A2 has 00:04:00 cell A3 should display the difference in negative way(-00:01:00). I only get ##### instead of the answer in cell A3 and a message reads (negative dates or times are displayed as # # # #) Your help will much appricated. thanks |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Calculate number of hours between dates and times excluding Weekends | Excel Discussion (Misc queries) | |||
Negative Times Displayed as # # # # | Excel Discussion (Misc queries) | |||
Dispalying negative times | Excel Worksheet Functions | |||
Count number of times a specific number is displayed in a cell ran | Excel Worksheet Functions | |||
Whats the function to count the total times a word is displayed | Excel Discussion (Misc queries) |