I'm getting Parse Error at char(610): malformed if statement (expression#1).
it seems to be tied to the end if statement. Can someone look at my formula and see what the potential issue is.
IF [REVENUE_MONTH]="202301"
THEN "01 January"
ELSEIF [REVENUE_MONTH]="202302"
THEN "02 February"
ELSEIF [REVENUE_MONTH]="202303"
THEN "03 March"
ELSEIF [REVENUE_MONTH]="202304"
THEN "04 April"
ELSEIF [REVENUE_MONTH]="202305"
THEN "05 May"
ELSEIF [REVENUE_MONTH]="202306"
THEN "06 June"
ELSEIF [REVENUE_MONTH]="202307"
THEN "07 July"
ELSEIF [REVENUE_MONTH]="202308"
THEN "08 August"
ELSEIF [REVENUE_MONTH]="202309"
THEN "09 September"
ELSEIF [REVENUE_MONTH]="202310"
THEN "10 October"
ELSEIF [REVENUE_MONTH]="202311"
THEN "11 November"
ELSEIF [REVENUE_MONTH]="202312"
THEN "12 December"
endif