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 works fine.The problem is that every time
the form opens up, the figure 111 shows in the age field by default. I
want it blank until the user enters a date of birth.I've tried just
about everything I ...