I am trying to use this formula to get my dates to just show the month and year. However, all of my January dates are missing the year. Why is January missing the year?
=IF(MONTH([Start Date]@row = 1, "January", IF(MONTH([Start Date]@row = 2, "February", IF(MONTH([Start Date]@row = 3, "March", IF(MONTH([Start Date]@row = 4, "April", IF(MONTH([Start Date]@row = 5, "May", IF(MONTH([Start Date]@row = 6, "June", IF(MONTH([Start Date]@row = 7, "July", IF(MONTH([Start Date]@row = 8, "August", IF(MONTH([Start Date]@row = 9, "September", IF(MONTH([Start Date]@row = 10, "October", IF(MONTH([Start Date]@row = 11, "November", IF(MONTH([Start Date]@row = 12, "December")))))))))))) + YEAR([Start Date]@row)