Hi Alteryx Community.
I am new user for Alteryx Designer.
I am trying to implement below logic in my Workflow.
IF [Concate]="110111" THEN ([RowCount]<=6 && [RowCount]>=10) ELSEIF [Concate]="110010" THEN ([RowCount]<=6 && [RowCount]>=13) elseif [Concate]="101111" THEN ([RowCount]<=3 && [RowCount]>=7) elseif [Concate]="001111" THEN [RowCount]>=7 elseif [Concate]="000111" then [RowCount]>=10 else [RowCount]<=18 endif
Here goal is to filter out number of rows based on Concate column values.
in first scenario if concate is "110111" I want Rowcount 1 through 6 and Rowcount 10 through 18.
Similarly for rest of scenarios.
Any help will be Appreciated.