Subtracting One Time Cell From Another

lukerees83

Board Regular
Joined
Mar 28, 2011
Messages
59
I'm working on an excel 2003 spreadsheet with the cells formatted to hh:mm

I currently have a very simple calculation to subtract one time from another =(K10-E10)

The result of the above calculation is 02:06, which is correct.

However, I need to have a formula which does the above calculation and then subtracts a further 25 minutes. In this case the answer needs to show 01:41.

I presume I can't just add -25 to the end of the formula because the hh:mm format doesn't permit it.

How do I program the formula to remove those extra 25 mins?
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
25 Minutes is 0:25:0
If you put that in one cell and subtract that from 2:06:0

=2:06:0-0:25:0
Cheers
 
Upvote 0
Hi,

Try:

=((A1*1440)-B1)/1440

Where A1 is your calculated time, and B1 is the number of minutes you want to subtract. Format as hh:mm.
 
Upvote 0

Forum statistics

Threads
1,224,594
Messages
6,179,794
Members
452,943
Latest member
Newbie4296

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