ok, age calculationTextField 2 is set in calculate event like thatvar id = TextField1.rawValue;"19" + id.substring(4,6)+"-"+id.substring(2,4)+"-"+id.substring(0,2)+"T00:00:00"BUT your approach has a weakness - 2 digit years cannot be interpreted correctly 20 can be 1920 and 2020 - you may need eithe...