How to calcualate the number of days passed in a column after date set in another column

goodmachine

Board Regular
Joined
Oct 7, 2009
Messages
70
Here is the scenario:

I have Column A that holds the date and Column B that shows many days have passed since that day in Column A passed.

For example - if the date in Column A is 7/1/2010, Column B shows 8 because a total of 8 days passed from the value in Column A up to today's date (7/2/2010)
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Thanks for the quick response!

Is there a way to set that formula such that it updates today's automatically? So that calculation in column B keeps getting updated.

New scenario -

Column A has the stored date when the issue was open: 7/1/2010
Column B has the stored date for when the issue was closed: 7/10/2010
Column C has calculates the number of days that passed until a value was entered in Column B.
 
Upvote 0
1) The TODAY() function updates itself every time the sheet calculates. This is already happening.

2) =IF(B1="", TODAY() - A1, B1 - A1)
 
Upvote 0

Forum statistics

Threads
1,214,912
Messages
6,122,204
Members
449,072
Latest member
DW Draft

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