I know this is likely a simple solution that I'm just not thinking of, but I'm stuck. I have two columns, A and B. I'm creating a new column C that should work like this:
If column A is null, then use the value from column B. If column A AND B are both null, then input "N/A". Otherwise, use the value from column A.
This is the formula that is not working:
if IsNull([ColumnA]) THEN [ColumnB] ELSEIF (IsNull([ColumnB]) AND IsNull([ColumnA])) THEN "N/A" ELSE [ColumnA] ENDIF
Appreciate any help to get this working!