Skip to main content

How to display / show negative time properly in Excel?

Some of us may suffer this problem, when you subtract a later time 12:20 from an earlier time 10:15, you will get the result as ###### error as following screenshots shown. In this case, how could you show negative time properly and normally in Excel?

doc-show-negative-time1-2doc-show-negative-time2

Display negative time properly with changing Excel's Default Date System

Display negative time properly with Formulas


arrow blue right bubbleDisplay negative time properly with changing Excel's Default Date System

Here is an easy and quick way for you to display the negative time normally in Excel by changing the Excel's Default Date System to 1904 date system. Please do as this:

1. To open the Excel Options dialog box by clicking File > Options in Excel 2010/2013, and clicking Office Button > Excel Options in Excel 2007.

2. Then in the Excel Options dialog box, click Advanced from the left pane, and in the right section, check Use 1904 date system under When calculating this workbook section. See screenshot:

doc-show-negative-time1

3. After finishing the settings, click OK. And the negative time will be displayed correctly at once, see screenshots:

doc-show-negative-time1-2doc-show-negative-time2


arrow blue right bubbleDisplay negative time properly with Formulas

If you don’t want to change the date system, you also can use the following formula to solve this task.

1. Input your dates that you want to calculate them, and enter this formula =TEXT(MAX($A$1:$A$2)-MIN($A$1:$A$2),"-H::MM") (A1 and A2 indicate the two time cells separately) into a blank cell. See screenshot:

doc-show-negative-time1

2. Then press Enter key, and you will get the correct result as following shown:

doc-show-negative-time1

Tip:

Here is another formula also can help you: =IF(A2-A1<0, "-" & TEXT(ABS(A2-A1),"hh:mm"), A2-A1)

In this formula, A2 indicates the smaller time, and A1 stands for the larger time. You can change them as you need.


Change all numbers to positive or negative as you need in Excel

In Excel, a list of numbers mixed with negative values and postive values, which needed to be converted  positive or negative, in this case, which method is the best way to solve the job  quickly and accurate? The Change Sign of  Values utility of Kutools for Excel will be a good choice. Click for full-feature free trial in 30 days!
doc change sign
 
Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days.

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (18)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
The problem I'm having with this negative time solution - is that the spreadsheet with the negative also has a lot of cells with dates in it, so when I Tick 1904 Date System - This adds 4 years to the dates.... is the only remedy for this to go and manually change all those dates?
This comment was minimized by the moderator on the site
I used the formula =IF(A2-A1<0, "-" & TEXT(ABS(A2-A1),"hh:mm"), A2-A1) to calculate the difference between times and it fixed my problem, so thank you! However, now I have another problem, I need to add together the results. So for example, if I have three different times I need to add up (as a result of the formula): -00:00:05, -00:00:10 and 00:00:03. So 2 negative times and 1 positive in this example. How can I have a formula that will calculate (-00:00:05) + (-00:00:10) + (00:00:03) = -00:00:12?
This comment was minimized by the moderator on the site
-0:00:05
-0:00:10
0:00:03
=sum(A1:A3)
This comment was minimized by the moderator on the site
Hi, Ayolice, place the positive time in cell E1, and place the negative time in cell E2 and E3, then use this formula =TEXT(MAX($E$1:$E$3)-MIN($E$1:$E$3),"-H::MM:SS")
This comment was minimized by the moderator on the site
Thank You!
This comment was minimized by the moderator on the site
i have a date from someone elses file showing as "20171229" i need it to look like "12/29/2017".. PLEASE HELP!
This comment was minimized by the moderator on the site
=date(left(A1,4),mid(A1,5,2),right(A1,2)
Where A1 is the cell containing the date.

The new cell will contain an excel date value for that day,
right click the new cell, and select the date format you want.
This comment was minimized by the moderator on the site
I have a negative time value in a cell, say CQ15. [ i got the value using the above mentioned formula =IF(A2-A1<0, "-" & TEXT(ABS(A2-A1),"hh:mm"), A2-A1) ]

Next, I'm trying to multiply the cell value with 5, ie. CQ15*5.
But not getting any result.
I have tried both the following formulas:
=TEXT(CQ15*5, "[h]:m:ss")
&
=IF(CQ15*5<0, "-" & TEXT(ABS(CQ15*5),"[h]:m:ss"),CQ15*5)

In both cases, i received #VALUE!

Can anyone please help me with this.
This comment was minimized by the moderator on the site
Couse CQ15 is a text cell. For calculate with it, you must format it as time value.
=IF(LEFT(CQ15,1)="-", -TIMEVALUE(RIGHT(CQ15,LEN(CQ15)-1)), TIMEVALUE(CQ15))
This comment was minimized by the moderator on the site
thank you so much! You just saved my day!
This comment was minimized by the moderator on the site
I am trying to calculate a negative formula for shift time not fully worked. Say data is as follows: A1 = 07:30 shift start, minus A2 = 1:00 lunch break A3 = 16:30 shift ends Then A4 = 8:00 hours worked during the day. But, should the worker leave earlier, say 17:00, what is the formula in cell A5 that shows how much short the person's shift was?
This comment was minimized by the moderator on the site
[quote]I am trying to calculate a negative formula for shift time not fully worked. Say data is as follows: A1 = 07:30 shift start, minus A2 = 1:00 lunch break A3 = 16:30 shift ends Then A4 = 8:00 hours worked during the day. But, should the worker leave earlier, say 17:00, what is the formula in cell A5 that shows how much short the person's shift was?By Meg[/quote] You can't directly display a negative time in Excel. However, you can display it using the TEXT() function. For example Cell A4 would have =A3-A1-A2 which will display the hours/minutes worked. Cell A5 would have 8:00 which is the number of hours you expect this person to work Cell A6 would have =IF(A5=A4,"Met expected target",IF(A4
This comment was minimized by the moderator on the site
"Tip: Here is another formula also can help you: =IF(A2-A1
This comment was minimized by the moderator on the site
If you switch to 1904 all dates in the workbook change. Not a solution. What is this 1904 thing anyway?
This comment was minimized by the moderator on the site
[quote]If you switch to 1904 all dates in the workbook change. Not a solution. What is this 1904 thing anyway?By Ralf[/quote] The 1904 format comes from Excel version 1.0 which was on the Macintosh. Two years later Microsoft released Excel for Windows and with with that release introduced the "1900" date format. Excel for the Mac continued to default to the 1904 format and Windows defaults to the 1900 format. Both versions can switch to the other format but doing so will cause all dates in a workbook to shift. The year 1900 was special in that though it's divisible by 4 it was not a leap year. The Mac's clock hardware did not have the extra logic needed to handle this special case and so Apple simplified the design by allowing for dates from 1904 (the first leap year in the century) on out. As Excel was first written for the Mac it was natural that Excel would use the Mac's date format. The developers of Excel for Windows used the 1900 format for backwards compatibility with SuperCalc and Lotus 1-2-3 which were the dominate spreadsheet applications in the MS-DOS and Windows markets at the time. The 1904 and 1900 formats are nearly identical. The 1904 format stores dates as the number of days since 1/1/1904 and the 1900 format is the number of days since 1/1/1900. You can convert a 1904 date to a 1900 date by adding 1,462 to a cell's value and subtracting 1,462 to convert the other way. Apparently the developers of Excel for the Mac included code to support negative time values. The coders of Excel for Windows did not support negative time values. Modern versions of Excel still include two separate chunks of code with one dealing with 1904 dates and the other for 1900 dates. They never fixed the 1900 code to support display of negative time values.
This comment was minimized by the moderator on the site
Thanks for the history lesson, Marc. Much clearer now how it came to this. Still leaves me wondering about your last sentence: "They never fixed ..." I don't get it. Would it be so hard to fix? So I still need to use Libre Office for two things: negative times and CSV export. Must be exotic niche features ...
This comment was minimized by the moderator on the site
Hello, any idea of how to do sum of negative hours which are in hh:mm format? for example -01:00 is at A1 column, -02:00 is at A2 column, -03:00 is at A3 column. I used "if" command to sum up the three columns (A1,A2,A3) but showing 0:00 if command "if(A1:A3
This comment was minimized by the moderator on the site
Couldn't you just multiply the numbers by -1 to start, add them up then multiply by -1 again?
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations