GermanGermanQrew Member13 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 ContentFormula to calculate hoursCalculating 1.5 payCalculation/Performance Limits InquiryAny tips for ensuring system calculations display consistently?Formula to display someone's age based on date?