In Microsoft Access, using the combination of the "Eval" and "BuildCriteria" functions, I can take three fields--[A], [Operator], [B]--build a string with these fields, and evaluate that string as being true or false. Is there a similar way to do this in Alteryx? For instance, can I somehow use the Alteryx Formula tool to concatenate the fields into a string ([A] + [Operator] + [B]), then evaluate that string as a boolean expression (true/false)?
[A] and [B] may be text strings or numbers, so I would build a preceding step to add quotes around any strings. [Operator] may be '=', '!=', '<', '>', 'Like', 'Not Like', etc. Examples:
IF [A] < [B] THEN 'Y' ELSE 'N' END IF
IF CONTAINS(["A"],["B"]) THEN 'Y' ELSE 'N' END IF