I need to count the number of fractional years between dates. I’m currently using this formula to count the number of days between dates:
DATETIME_DIFF({To},{From},‘days’)
and this formula works great for the number of days between dates but what I really need is fractional years between dates, such as 1.1, 1.5, etc, such as the YEARFRAC function does in Excel. If I change ‘days’ to ‘year’ I get whole number results like 0, 1 or 2. I need to show fractions of a year.
Suggestions anyone?