Hi, I’m trying to create a very simple IF formula, but keep getting back the #Unparseable error. I know that error is for syntax, so since it’s such a simple formula, I copy/pasted the formula from the IF FUNCTION section from Help & Learning and changed the name of the column and it worked. HOWEVER if I tried to change the text for the if true and if false values, it no longer works. I didn’t change anything except what word to return, only selected the letters and not the quotation marks, but I keep getting the #Unparseable. I kept fiddling and the other strange thing is I can get it to work with difference text but only if I only use lowercase letters. Any capital letters and I get the error again.
I’m on a Mac and Mac keyboard, does that make a difference because I also tried changing the column properties to symbol and putting in “Red” and “Green” instead of text, and that doesn’t work either.
=IF([Status]1 = "Red", "At Risk", "On Time”) is the formula from the Help & Learning section which I changed to:
=IF(Overdue@row >0, "At Risk", "On Time") and everything works dandy. But if I change to:
=IF(Overdue@row >0, “Late", "On Time”) I get the error again. But if I change to:
=IF(Overdue@row >0, “late", "On Time”) then it works again.