I'm using the following formula to extract the name of the month (e.g., "May" if there is a "5") but keep getting an "Invalid Data" error.
=IF(MONTH([SLA Month]@row) = 1, "January", IF(MONTH([SLA Month]@row) = 2, "February", IF(MONTH([SLA Month]@row) = 3, "March", IF(MONTH([SLA Month]@row) = 4, "April", IF(MONTH([SLA Month]@row) = 5, "May", IF(MONTH([SLA Month]@row) = 6, "June", IF(MONTH([SLA Month]@row) = 7, "July", IF(MONTH([SLA Month]@row) = 8, "August", IF(MONTH([SLA Month]@row) = 9, "September", IF(MONTH([SLA Month]@row) = 10, "October", IF(MONTH([SLA Month]@row) = 11, "November", IF(MONTH([SLA Month]@row) = 12, "December"))))))))))))
Any assistance would be greatly appreciated!! Thanks!