I am getting an error in the following formula:
IF Left([Firm Administrative Code 987654], 1) = 0 Then 'F00' ELSEIF
Left([Firm Administrative Code 987654], 1) = 4 Then 'F01' ELSEIF
Left([Firm Administrative Code 987654], 1) = 5 Then 'F05' ELSEIF
Left([Firm Administrative Code 987654], 1) = 8 Then 'F08'
ELSE 'F0 -ERROR'
ENDIF
The error occurs at the = sign before 8 in the 3rd to the last row
I have even tried copying the Left function from the previous row and pasting it over what I have and changing the condition, but it actually gives an error immediately.
UPDATED: NM, it's vstring and needs quotes around the numbers after the = signs