Hi all,
I am new to Alteryx, so I am guessing this is something simple; but i cannot figure it out. (I have tried several variations of iif and if-then, with parenthesis everywhere). When I run these two statements independently, they each work, but when I try to run them together with an OR, everything comes back as "No". Can someone give me some guidance?
Statement 1 - iif (!Contains([Position], 'Center'), 'No', 'Yes')
Statement 2 - iif (!Contains([Position], 'Operation'), 'No', 'Yes')
Combined Statement - iif (!Contains([Position], 'Center') || !Contains([Position], 'Operation'),'No', 'Yes')
Thank you in Advance!