Nested IF Formula Issue - Returning UNPARSEABLE

I have a formula that is returning the month name for a specific date column (Next Audit Period) that is returning an UNPARSEABLE error and I can't figure out why. The formula is below.


= IF(MONTH([Next Audit Period]@row) = 1, "Jan”, IF(MONTH([Next Audit Period]@row) = 2, "Feb”, IF(MONTH([Next Audit Period]@row) = 3, "Mar”, IF(MONTH([Next Audit Period]@row) = 4, "Apr”, IF(MONTH([Next Audit Period]@row) = 5, "May”, IF(MONTH([Next Audit Period]@row) = 6, "Jun”, IF(MONTH([Next Audit Period]@row) = 7, "Jul”, IF(MONTH([Next Audit Period]@row) = 8, "Aug”, IF(MONTH([Next Audit Period]@row) = 9, "Sep”, IF(MONTH([Next Audit Period]@row) = 10, "Oct”, IF(MONTH([Next Audit Period]@row) = 11, "Nov”, IF(MONTH([Next Audit Period]@row) = 12, "Dec”, “”))))))))))))

Best Answer

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    Answer ✓

    It is your quotes. The slanted quotes come from programs such as Word. They are called "smart quotes" and (ironically enough) are not recognized by Smartsheet. Try retyping the formula either here in the community, in the sheet itself, or in a text editor such as Notepad. You should notice that the quotes are now straight up and down. These are the quotes you need for Smartsheet.

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!