Calculating months formula
I am trying to calculate the number of months to date from a date column. Any suggestions?
Answers
-
Try this...
=VALUE(YEAR([End Date]@row) + "" + IF(MONTH([End Date]@row) < 10, "0") + MONTH([End Date]@row)) - VALUE(YEAR([Start Date]@row) + "" + IF(MONTH([Start Date]@row) < 10, "0") + MONTH([Start Date]@row))
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!