The age should not be stored in your table ... unless you need to store the "Age at the Time of entry".
You can use this expression to correctly calculate the persons age"
DateDiff("yyyy", [DOB], Date()) + (Date() < DateSerial(Year(Date()), Month([DOB]), Day([DOB])))
HTH
RDH