solution to "time" calculations displaying negative and positive numbers - not using 1904

copperwasher

Board Regular
Joined
Mar 1, 2016
Messages
84
Office Version
  1. 365
Platform
  1. Windows
Hi there Excel fans

I have a calculation requirement to display both positive and negative "time" calcs.

1904 isnt a viable solution as the sheet is shared with a Apple user...

I have the formula which works with negative numbers
=IF(H27-G27<0, "-" & TEXT(ABS(H27-G27),"hh:mm"), H27-G27)
00:45​
00:20​
-00:25​

But it returns a digital format number when the time calc is positive
00:30​
01:00​
0.020833333​

This formula (Yes, I am still learning here) returns an error:
=IF(H28-G28<0, "-" & TEXT(ABS(H28-G28),"hh:mm"), H28-G28),IF(H29-G29>0, "" & TEXT(ABS(H29-G29),"hh:mm"), H29-G29)

#VALUE!

Any suggestions would be greatly appreciated.

Yours,
Copperwasher
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Maybe:
Code:
=IF(H27-G27<0, "-","") & TEXT(ABS(H27-G27),"hh:mm")
Maybe, indeed it has Bebo021999...

that has worked perfectly...

I can see how the formula produces the negative answer, i dont follow its process to produce a positive number...???
 
Upvote 0
Maybe:
Code:
=IF(H27-G27<0, "-","") & TEXT(ABS(H27-G27),"hh:mm")
Ah...

Now the positive and negative time results are related to the 'text' format...

How do I sum the column of results (negative and positive numbers), which is currently stating 00:00
00:00
=SUM(I11:I252)


I have checked the format, which still produces a zero sum

Any thoughts ???
 
Upvote 0
May be:
Code:
=IF(SUM(IF(LEFT(I11:I252)="-",-MID(I11:I252,2,255),I11:I252+0))<0,"-","")&TEXT(ABS(SUM(IF(LEFT(I11:I252)="-",-MID(I11:I252,2,255),I11:I252+0))),"hh:mm")
P/S: for Ex2016 --, must be confirmed by Ctrl-Shift-Enter combination, instead of Enter only.
 
Upvote 0
Solution
Crikey .... no wonder I couldn't solve that, the formula is epic in length...

Thank you so much for showing me how its done
 
Upvote 0

Forum statistics

Threads
1,215,835
Messages
6,127,167
Members
449,368
Latest member
JayHo

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