Hi there,
I am new to alteryx and got a situation that would love to hear suggestions from the community.
Let's say I need to validate the data in my alteryx workflow as below:
condition 1: If field_A = X, then field_x, field_y cannot be null
condition 2: If field_A = Y, then field_x, field_z cannot be null
condition 3: If field_A = X, then field_1, field_2 cannot be null
I have around 100 conditions in total. These conditions are not mutually exclusive, some records do fit into multiple conditions.
I thought the multiple fields formula might be helpful, but that might result in ~100 nodes in the workflow if I input one condition in each of the node.
The result I am looking for is to add a new column with the validation result.
"Mandatory field Check"
----------------------------------
row 1 "field x is missing, field y is missing,"
row 2 "field z is missing,"
row 3 " "
row 4 "field x is missing,"