Hi,
What formula can I use to calculate the number of months between two columns?
So in the below example, I want the formula to pull back the result 5.
Hi,
What formula can I use to calculate the number of months between two columns?
So in the below example, I want the formula to pull back the result 5.
Hi Hayley,
To get the date of January 1, 2024
DATEVALUE(CONCATENATE({Starting Month}," 1, ",{Year}))
To count the number of days between the 2 dates:
DAYS({Date},DATEVALUE(CONCATENATE({Starting Month}," 1, ",{Year})))
Then you could divide by 30 and round up or down depending on how you want to count it.
ROUNDUP(DIVIDE(DAYS({Date},DATEVALUE(CONCATENATE({Starting Month}," 1, ",{Year}))),30),0)
Want to take your formulas to the next level? Try the Advanced Formula Booster, the app that reinvents formulas in monday.
Check our blog for real use cases.
Thank you so much!