Counting months between dates across multi-years
How can I calculate out how many months between 2 dates when the dates are in 2 different years?
Best Answer
-
I see you marked Dale's comment as not resolving your question.
Another way to do this is to find how many days there are between the two dates, divide this by 365 (years) then multiply by 12 to find the Months.
=ROUND((NETDAYS([Start Date]@row, [End Date]@row) / 365 * 12))
Cheers,
Genevieve
Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.
Answers
-
@Jessica Abbey Not to over-simplify, but you have to count years and months!
=(YEAR([Date 2]@row) - YEAR([Date 1]@row)) * 12 + (MONTH([Date 2]@row) - MONTH([Date 1]@row))
should be pretty close.
dm
-
I see you marked Dale's comment as not resolving your question.
Another way to do this is to find how many days there are between the two dates, divide this by 365 (years) then multiply by 12 to find the Months.
=ROUND((NETDAYS([Start Date]@row, [End Date]@row) / 365 * 12))
Cheers,
Genevieve
Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives