I want to create a new column based on a range of columns(GAP1-GAP5). I wanted to use something like this:
IF FIND(GAP1-GAP5,'New Start') THEN FILTER_NewStart=1
but got an error so had to use this:
IF FIND(GAP1,'New Start') OR FIND(GAP2,'New Start') OR FIND(GAP3,'New Start')
OR FIND(GAP4,'New Start') OR FIND(GAP5,'New Start') THEN FILTER_NewStart=1;
Do I need to use a loop or can I use a function for a range of columns to achieve this?