I want to create a column that combines multiple columns using some if statements.
My goal is to end up with one [Combined] column that looks at [Revision] if it is blank or null than check [Purchase order text] is it is null or blank and if all of those are null or blank then pull in [Partner Object] value. If [Revision] has a value I want to add the Revision number.
IF IsNull([Revision]) OR IsEmpty([Revision]) AND IsNull([Purchase order text])
THEN [Partner object]
ELSE IF IsNull([Revision]) OR IsEmpty([Revision])
THEN [Purchase order text]
ELSE [Revision]
ENDIF
