I am struggling to get a Formula that would return my age, where the number after the decimal point indicates the number of months in duodecimal format. For example, my current age is 34 years and 3 months, therefore I want to see 34.03 as the return.
So far I've managed to only get this:
the formula I am using is:
(DATETIME_DIFF(TODAY(),{DoB},"Y"))
&"."
&((DATETIME_DIFF(TODAY(),{DoB},"M"))
-((DATETIME_DIFF(TODAY(),{DoB},"Y"))*12))
It is pretty close to what I am looking for, but how do I get 2 digits after the decimal point by default?
*I understand that it may be aweird request asking to combine decimal and dozenal numeral systems like this, but would really appreciate if somebody helped me solve this one 🙏
Best answer by Sho
It is more difficult than I thought! How about this