Formulating a DUE DATE

Kidmon

Board Regular
Joined
Mar 4, 2011
Messages
71
I am using excel 2007
I know this is simple for you Pros but...
All I need to do is enter a date value in column A and have Column B autofill and increase that date by a give period (i.e. 2 weeks)


Something like this
Check out Date: 2/2/2011 (Column A)
Due Date: 2/16/2011 (Column B) Autofill from Column A

Thanx for the help, you guys are awsome:):)
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Paste into your Sheets Module

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 1 Then Exit Sub
Target.Offset(, 1).Value = Target + 14
End Sub
 
Upvote 0
Almost but not quite. I didn't make it clear that column A with have different dates in each cell. You easy formula works great on B1=A1+14 BUT I meant to say that every cell in column A will contain a specific and Column B will be that date plus 14. Many dates & many cells in the 2 columns, just 14 day difference.
Thanx
 
Upvote 0
Thanx Jim, HOWEVER< I don't really understand the way you are writing the formula, remember I am a newbee at excel. Do you have another way to help me understand? and to make sure I had made it clear I need every cell in ColumnB to increase by 14 in relation to the same ROW for ColumnA date.
Thanx for your interest.
Thanx for helping me move my mountain.
 
Upvote 0
Almost but not quite. I didn't make it clear that column A with have different dates in each cell. You easy formula works great on B1=A1+14 BUT I meant to say that every cell in column A will contain a specific and Column B will be that date plus 14. Many dates & many cells in the 2 columns, just 14 day difference.
Thanx


Enter the formula in B1, then move your mouse to the bottom right corner of B1 so that the cursor changes from white to black, then double click.
 
Upvote 0

Forum statistics

Threads
1,216,113
Messages
6,128,907
Members
449,478
Latest member
Davenil

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