DateAdd is the function you need.
You may not need to store the destruction date in a table unless the 10-year
rule is subject to change (in fact you shouldn't unless it's subject to
change). You can return the destruction date by including this term in the
Query Builder:
Destruction-Date

ateAdd("yyyy", 10, [closed_date])
.... which will return the calculated date in a column headed
"Destruction-Date".
If you haven't come across it, the Expression Builder (look for the magic
wand labelled "builder...") will repay the effort of learning it. See:
http://office.microsoft.com/en-us/ac...549021033.aspx
If you do need to store the calculated date, you can use an update query to
update the table with the calculated value.
Phil, London
"WG" <(E-Mail Removed)> wrote in message
news:3B48F8E9-42D1-4775-8320-(E-Mail Removed)...
> I have a closed date field and a destruction date field both of which use
> medium date format. I need the destruction date to be the closed date
> plus
> ten years. Iam not sure what formula to use to do this.