I have a form with two fields: [DOB] (for date of birth) and [Age] (which is unbound). I'm using the following to calculate age:
[Age] = DateDiff("yyyy", [DOB], Date) + (Date < DateSerial(Year(Date), Month([DOB]), Day([DOB])))
My question is this: What's the best place to place this? If I...