how to calculate a date 3 yrs on

G

Guest

Can anyone help me please?

I am working from a Table. First Column is the Training Date and the 2nd
column is to be a calculation of the training date + 3 years.

1st column is staff's H&S certificate updated course date.
2nd column is for a calculation of 1st column Training Date + 3 yrs.
Certificates are updated every three years.

I did try =DateAdd ("y", 3 "16/10/2003") and =DateAdd ("y", 3 [Training
Date]) .

Next date should be calculated at 16/10/2006.

Please help.

Kim Johnson.
 
T

Tom Lake

I am working from a Table. First Column is the Training Date and the 2nd
column is to be a calculation of the training date + 3 years.

1st column is staff's H&S certificate updated course date.
2nd column is for a calculation of 1st column Training Date + 3 yrs.
Certificates are updated every three years.

I did try =DateAdd ("y", 3 "16/10/2003") and =DateAdd ("y", 3 [Training
Date]) .

Next date should be calculated at 16/10/2006.

Please help.

Kim Johnson.

A single y is for day of the year (1 - 365). To add years, use yyyy and
separate the number of years from the starting date with a comma like so:

=DateAdd ("yyyy", 3, "16/10/2003")

Tom Lake
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top