If I need to change field text using an If Statement, I have to write in in a format similar to this:
IF [Product Line]=="" THEN
"Others"
ELSE
[Product Line]
ENDIF
Having an Else statement increases processing time and statement complexity and in this case is unnecessary. Please allow me to write my code in this manner:
IF [Product Line]=="" THEN
"Others"
ENDIF