Hello,
I'm having trouble converting the following Excel formula into an Alteryx Formula.
I could do this very simply if it was more than one tool, but I want to summarize the below into just as single Formula node.
I've made an attempt but can't seem to fulfill the below.
Field 1, 2 and 3 would usually be referencing a speciifc cell in Excel, but I've formatted it to reference the specific field.
IF([Field 1] ="Hello",
IF(AND([Field2]="John",[Field3]=20),"TRUE",
IF(AND([Field2]="Sam",[Field3]=30),"TRUE","FALSE"
)),"Not Available")
Essentially, "FALSE" will only occur when [Field 1] is "Hello", but does not fulfill any of the other conditions.
Whereas, Not Available will occur when [Field 1] is anything but "Hello".
And "TRUE" will only occur when "Hello" is fulfilled and any of the "John" + "20" or "Sam" + "30".
Future wise, in the workflow I consider TRUE and Not Available the same, so an alternative solution would be just to identify records where [Field 1] = "Hello" and is not everything which is John + 20 OR Sam + 30.
Thanks for anybody's help.