GermanGermanQrew Member12 years agoAge CalculationI have a Date of Report field, a Date of Birth field and next to it we compute Age; how can I fill the Age field automatically based on DOB and the original date of the report?
QuickBaseCoachDQrew Captain9 years agoHere is a formula to calculate age in decimal years. It will be blank if negative. AGE and decimal months // replace the [DOB] field with your date of birth field var date DOB = [DOB]; var number Years = Year(Today())-Year($DOB) - If( Month(Today()) 0, $MonthsDifference, 12 + $MonthsDifference); Var Number Age = Round($Years + $Months/12,0.1) If($Age >= 0, $Age)
Related ContentCalculating 1.5 payCalculation/Performance Limits InquiryFormula to display someone's age based on date?How to Calculate Completion Percentage Using Multi-Select BoxesCalculating number of days between two date fields