core.noscript.text
IF Column A = Blank Then "N", ELSEIF Column A = USGA Then "N-USGA" ELSE "Y"
Solved! Go to Solution.
@jetmey use the isEmpty() function check the blank
IF isEmpty([Column A]) Then "N" ELSEIF [Column A] = "USGA" Then "N-USGA" ELSE "Y" ENDIF
@jetmey to add to @binuacs solution if your blanks are Nulls the just replace isEmpty with isNull in binuacs formula