Add months to a date

G

Graeme Richardson

Hi Frank, use the DateAdd function. The follwing code will return the date
in 3 months time

Dim dtmNew As Date
dtmNew = DateAdd("m", 3, Now())
 

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