Hi, I am trying to extract the month from a date column and for cells without a date in the same column to return a blank. I have used the expression below but it returns an incorrect argument message. Can anyone help, please?
=IFERROR(MONTH([Date CMI confirmation filed to matter]@row) = 1, "January", IF(MONTH([Date CMI confirmation filed to matter]@row) = 2, "February", IF(MONTH([Date CMI confirmation filed to matter]@row) = 3, "March", IF(MONTH([Date CMI confirmation filed to matter]@row) = 4, "April", IF(MONTH([Date CMI confirmation filed to matter]@row) = 5, "May", IF(MONTH([Date CMI confirmation filed to matter]@row) = 6, "June", IF(MONTH([Date CMI confirmation filed to matter]@row) = 7, "July", IF(MONTH([Date CMI confirmation filed to matter]@row) = 8, "August", IF(MONTH([Date CMI confirmation filed to matter]@row) = 9, "September", IF(MONTH([Date CMI confirmation filed to matter]@row) = 10, "October", IF(MONTH([Date CMI confirmation filed to matter]@row) = 11, "November", IF(MONTH([Date CMI confirmation filed to matter]@row) = 12, "December", ""))))))))))))
Many thanks
Ally