I would like to make a template that allows me to enter a date in to one
column and have the second column automatically calculate the date that
occurs 5 days later. If anyone can help me with setting this up I would
REALLY appreciate it.
Thanks for your time,
Megan
Stephen - 21 Nov 2007 15:25 GMT
>I would like to make a template that allows me to enter a date in to one
> column and have the second column automatically calculate the date that
[quoted text clipped - 3 lines]
> Thanks for your time,
> Megan
Simple! To get the date five days after the date in A1, use
=A1+5
If Excel doesn't do it automatically for you, format the cell with this
formula in it with a date format of your choice.
You can then simply copy this formula down as far as you need.
Mike H - 21 Nov 2007 15:29 GMT
Megan,
With a date in A1 put this in B1
=A1+5
If you want it without a formula right click the sheet tab, view code and
paste this in:-
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Or IsEmpty(Target) Then Exit Sub
If Not Intersect(Target, Range("A1:A10")) Is Nothing Then 'change to suit
'Ensure target is a date
If IsDate(Target) Then
Application.EnableEvents = False
Target.Offset(0, 1).Value = Target.Value + 5
Application.EnableEvents = True
End If
End If
End Sub
Mike
> I would like to make a template that allows me to enter a date in to one
> column and have the second column automatically calculate the date that
[quoted text clipped - 3 lines]
> Thanks for your time,
> Megan
Bob I - 21 Nov 2007 15:29 GMT
Format column "B" as Date and plug in =A1+5 and copy down to the rest of
the cells
> I would like to make a template that allows me to enter a date in to one
> column and have the second column automatically calculate the date that
[quoted text clipped - 3 lines]
> Thanks for your time,
> Megan
Megan - 21 Nov 2007 17:40 GMT
Thanks you all! I nkow it was an easy answer but I am just getting started :)
appreciate your time. mg
> Format column "B" as Date and plug in =A1+5 and copy down to the rest of
> the cells
[quoted text clipped - 6 lines]
> > Thanks for your time,
> > Megan
Francois - 21 Nov 2007 15:29 GMT
>I would like to make a template that allows me to enter a date in to one
>column and have the second column automatically calculate the date that
[quoted text clipped - 3 lines]
>Thanks for your time,
>Megan
Enter date in cell A1
in next cell enter =A1+5
FSt1 - 21 Nov 2007 15:30 GMT
hi
no big mystery. dates are stored as numbers. all you have to do is add 5....
if data entered is in A column and add date is in column B then in column B
put...
=IF(A2="","",A2+5)
format as date.
regards
FSt1
> I would like to make a template that allows me to enter a date in to one
> column and have the second column automatically calculate the date that
[quoted text clipped - 3 lines]
> Thanks for your time,
> Megan