Would like to ask your advice, I was trying out following option:
Using following function:
Option Compare Database
Public Function CalcAge(DeliveryDate As Date) As String
Dim intYears As Integer, intMonths As Integer, intDays As Integer
intMonths = DateDiff("m", DeliveryDate, Date)...