How can I get a result in negative time?

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
What does this mean?

0:10-0:11

Thats not a proper time for a start.

UPDATE: Got it, it's a calculation not a value. Two columns in a time implies it's a value.
 
Last edited:
Upvote 0
09:3011:15(01:45)
just format as (hh:mm)

<colgroup><col span="7"><col></colgroup><tbody>
</tbody>
 
Upvote 0
Hi,

A simple way is to Click File > Options > Advanced and look for a section called "When Calculating this workbook", in here TICK the "use 1904 date system" and your negative time will be displayed.

as per your sample, standard formatted time is hhmm so your data would be - 00:10 - 00:11 and this would display -00:01, to get it display as -0:01 then you would need to format the cells as custom time h:mm
 
Upvote 0
Thanx for the great reply.
When I click, File , however I dont see an options menu, or advanced menu

I'm using Excel 2011 for iMac
 
Last edited:
Upvote 0
09:3011:15-01:45
another way
="-"&TEXT(B1-A1,"hh:mm")

<colgroup><col width="64" span="7" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0
Ah Mac....I have no access to them to try stuff...so building on oldbrewers suggestion, this will add a negative sign if the A2-b2 is less than zero, else it will just show the normal (positive) value.

To get this to work properly I did have to format my cells as time or with a custom format of h:mm to match your original figures

Code:
=IF(A2-B2<0, "-" & TEXT(ABS(A2-B2),"h:mm"), A2-B2)

See if that works for you and let us know :)
 
Upvote 0

Forum statistics

Threads
1,215,291
Messages
6,124,093
Members
449,142
Latest member
championbowler

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top