Hello,
I've tried to modify an existing array formula that returns a list of all Projects meeting the "Yes" value on another sheet (Input) to exclude any lines that are duplicate. I can't get seem to get the modified formula right with regard to parenthesis, # of arguments, etc. Any help would be greatly appreciated!
=IFERROR(INDEX(Input!$F$4:$F$201,SMALL(IF(N(FREQUENCY(IF(Input!$H$4:$H$201="Yes",IF(ISNUMBER(MATCH(Input!$A$4:$A$201,$A$4,0)),MATCH(Input!$A$4:$A$201,$A$4,0)))>0)>0,ROW(Input!$A$4:$A$201)-ROW(Input!$4:$4)+1)),ROWS($A5:$A$5))),"")
And here was my original formula which worked except picked up duplicate lines.
=IFERROR(INDEX(Input!$F$4:$F$201,SMALL(IF(Input!$H$4:$H$201="Yes",IF(ISNUMBER(MATCH(Input!$A$4:$A$201,$A$4,0)),ROW(Input!$A$4:$A$201)-ROW(Input!$4:$4)+1)),ROWS($A5:$A$5))),"")
I've tried to modify an existing array formula that returns a list of all Projects meeting the "Yes" value on another sheet (Input) to exclude any lines that are duplicate. I can't get seem to get the modified formula right with regard to parenthesis, # of arguments, etc. Any help would be greatly appreciated!
=IFERROR(INDEX(Input!$F$4:$F$201,SMALL(IF(N(FREQUENCY(IF(Input!$H$4:$H$201="Yes",IF(ISNUMBER(MATCH(Input!$A$4:$A$201,$A$4,0)),MATCH(Input!$A$4:$A$201,$A$4,0)))>0)>0,ROW(Input!$A$4:$A$201)-ROW(Input!$4:$4)+1)),ROWS($A5:$A$5))),"")
And here was my original formula which worked except picked up duplicate lines.
=IFERROR(INDEX(Input!$F$4:$F$201,SMALL(IF(Input!$H$4:$H$201="Yes",IF(ISNUMBER(MATCH(Input!$A$4:$A$201,$A$4,0)),ROW(Input!$A$4:$A$201)-ROW(Input!$4:$4)+1)),ROWS($A5:$A$5))),"")