I'm trying to create a Compute/Derived Field in HR Talent to return an employee's age at hire with two decimals. If I set the field type to Decimal (e.g., 3.2), the calculation always returns 9.99 for every record, but without decimals the age calculates correctly.
I've tried formulas like:
(StartDate - Birthdate) / 365((StartDate - Birthdate) / 365)
I also tried computing age in days first (which returns correctly as an Integer and Numeric type) and then dividing by 365 in a separate field, but I get the same issue when decimals are involved.
What am I missing?