Hi, I am trying to count the number of months from the Start Date till today. The actual day of the 'Start Date' doesn't matter. For example, if 'Start Date' is 9/20/23 and today is 12/11/23, I want to count the number of months that have passed: Sept, Oct, Nov, Dec = 4. I have tried this formula:
Solved
Count number of months from Start Date to today
DATETIME_DIFF(TODAY(),{Start Date},'months')
but, I know that doesn't work. I have been searching the community and haven't found the right solution.
Any help would be appreciated.
Best answer by Sho
Airtable sometimes misinterprets dates, so this might be better.
DATETIME_DIFF(
DATETIME_PARSE(DATETIME_FORMAT(TODAY(),"YYYY-MM"),"YYYY-MM-01"),
DATETIME_PARSE(DATETIME_FORMAT({Date},"YYYY-MM"),"YYYY-MM-01"),
"month"
)Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
