I want to write a basis formula if a column in this case [Concat] is blank or empty then put "Other derivative" otherwise [Concat].
How do I write this in Alteryx?
I tried writing these two formulae in the box but an error message appears.
=if(!IsEmpty([Concat]), "Other derivative",[1 - DataLens matched])
=IF [Concat]="" THEN "Other derivative" ELSE [Concat] ENDIF