Formulaic way to add minutes to an existing date time cell

jangell

New Member
Joined
Apr 12, 2010
Messages
38
I have a column that includes the last time a person took a particular action against a task. In the column to the right of that I want inout a number of minutes until I need to do the next task and in the next column I want to sum the two columns that are to the right.

5/4/2015 9:03120Add the two columns to the left for a new value in this cell.

<tbody>
</tbody>
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
AWESOME...

Now if I wanted to add another column that took the value that resulted from the calculation and subtract that from the current time (sort of a countdown to when the task is due) can you assist me with that formula?

I have the current date time (=now()) in cell A1 if that helps.
 
Upvote 0
OK, so
A1: =NOW()
B1: is the cell containing some Date/Time value
C1: is the cell containing the number of minutes (120) you want added to the date/time in B1

D1: =B1+C1/1440
E1: =A1-D1
 
Upvote 0
Format the cell with the formula as a Date/Time.

Dates and Times are just numbers.
Cell formatting makes them look like dates and times.

The DATE is the whole number (left of the decimal point).
Incrimenting by 1 since Jan 1 1900
So Today 5/4/2015 is the 42128th day since Jan 1 1900.

TIME is the decimal value (to the right of the decimal point)
Basically a fraction of a day.
1 hour is 1/24

6 hours = 0.25
12 hours is 0.5
etc..
 
Last edited:
Upvote 0
Yes, by formatting the cell as the Date and Time format you desire.
Highlight the cell with the formula
Right click - Format Cells
Click Date
Select an appropriate format.

Or choose Custom and manually enter the format, something like
mm/dd/yyyy hh:mm:ss
 
Upvote 0
Excel doesn't really understand Negative Time Values (humans can't travel backwards through time...yet).
So formatting a negative value as a time just doesn't make sense, so it displays ####

What would you like to happen instead of the #### when the value is negative?

Maybe you could do

E1: =IF(A1-D1<0,"Overdue",A1-D1)

Still formatted as a date/time
 
Upvote 0

Forum statistics

Threads
1,214,878
Messages
6,122,062
Members
449,064
Latest member
scottdog129

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