I've got a "date of birth" field on a form with a corresponding "age" field. When a user enters the date of birth, the age is automatically calculated and displayed in the age field.This is the code on the age field.((Date2Num(DOB.formattedValue, "MMMM D, YYYY") - Date() )/365.25)*-1The calculation ...