I am currently trying to use the following formula to get my Quarter:
IF [Month]<=3 THEN "Q1" Elseif [Month] <=6 THEN "Q2" ELSEIF [Month] <=9 THEN "Q3" ELSE "Q4" ENDIF
I currently have the data type at: Int16, but it still doesn't seem to recognise the <=9. As soon as I add the ENDIF the last section from <=9 to the end gets unhighlighted. Is there something I am doing wrong?