It depends on how you are calculating the age. Are you using a function?
A function could be like:
Code:
Age = CalcAge(DOB, TheDate)
where
DOB = Date of Birth
TheDate = the date at which you want to calculate the age (ie today, last month, etc)
So for today, it would be
Code:
Age = CalcAge(DOB,Date())
It could be modified to check if the person passed:
Code:
Age = CalcAge(DOB,IIf(CheckBoxName,DoD,Date()))
where DoD = date of death
Change CheckBoxName to the name of your checkbox
and DoD to the name of the text box that has the date of passing