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 r...