Forum Discussion
TRoge327
Jul 06, 2022Copper Contributor
In Access, future date from previous date
In Access, I'm trying to calculate a future date of 65 years from another date(birthdate) column/field.
- Here's one solution
DateSerial(Year(BirthDate)+65,Month(BirthDate), Day(BirthDate)) - arnel_gpSteel Contributor
you can also use this and is more compact:
DateAdd("yyyy", 65, [Birthdate])