I get and "#incorrect argument set" when I wrap my IF statement with IFERROR to replace the "#INVALID DATA TYPE". Please tell me what I am missing?
=IFERROR(IF(MONTH([Incentive Date]@row) = 1, "January", IF(MONTH([Incentive Date]@row) = 2, "February", IF(MONTH([Incentive Date]@row) = 3, "March", IF(MONTH([Incentive Date]@row) = 4, "April", IF(MONTH([Incentive Date]@row) = 5, "May", IF(MONTH([Incentive Date]@row) = 6, "June", IF(MONTH([Incentive Date]@row) = 7, "July", IF(MONTH([Incentive Date]@row) = 8, "August", IF(MONTH([Incentive Date]@row) = 9, "September", IF(MONTH([Incentive Date]@row) = 10, "October", IF(MONTH([Incentive Date]@row) = 11, "November", IF(MONTH([Incentive Date]@row) = 12, "December", "Enter Date")))))))))))))