I am using a template for a yearly calendar and it all works great until March 1st. Its a leap year and at that point it goes haywire. Feb 29 is not seen as March 1. Any suggestions on how to fix?
Here is the formula in the row: =IF(MONTH(Date62) = 1, "January", IF(MONTH(Date62) = 2, "February", IF(MONTH(Date62) = 3, "March", IF(MONTH(Date62) = 4, "April", IF(MONTH(Date62) = 5, "May", IF(MONTH(Date62) = 6, "June", IF(MONTH(Date62) = 7, "July", IF(MONTH(Date62) = 8, "August", IF(MONTH(Date62) = 9, "September", IF(MONTH(Date62) = 10, "October", IF(MONTH(Date62) = 11, "November", IF(MONTH(Date62) = 12, "December"))))))))))))