Looking to write a conditional formula to tag the data in the attached workbook. The On Call column is what I am trying to write in Alteyx for it to auto tag, but can't seem to get it right.
Essentially if [TotalPayableHours]=1 AND ([TotalPayableAmount]=100 or [TotalPayableAmount]=250) THEN "Yes" ELSE "" EndIF
Solved! Go to Solution.
IF [TotalPayableHours] = 1 AND ([TotalPayableamount] IN (100,250)) Then 'Yes' Else Null() EndIF