Hiya!
I’m trying to calculate employee tenure with DATETIME_DIFF. I’m able to show it by years, months, or days. What I’d ideally like is to break it down to say: 3 years, 2 months.
So I have a field for start date and end date (as screenshot suggests). I have the formula applying today() if they are still employed. Just can’t figure out how to get that month figure to be months into the current year.
Thought I’d add my current formula.
DATETIME_DIFF(
IF({End Date}=BLANK(),TODAY(),{End Date}),
{Start Date}, 'Years') & " Years, "
& DATETIME_DIFF(
IF({End Date}=BLANK(),TODAY(),{End Date}),
{Start Date}, 'M') & " Months"
Thanks!!

