Hello everyone,
I'm trying to extract data from sheet1 into sheet2. One of the columns in sheet1 contains a personal identifier along with other text.
On sheet2 I use a filter function to extract data from sheet 1 by referencing cells in sheet2 column (i) that lists the personal identifiers I'm interested in.
=FILTER(INDEX(Sheet1!A:N,SEQUENCE(ROWS(Sheet1!A:N)),{2,3,4,6,9,11}),ISNUMBER(SEARCH(I2,Sheet1!K:K))+ISNUMBER(SEARCH(I3,Sheet1!K:K))+ISNUMBER(SEARCH(I4,Sheet1!K:K)),"")
The formula above works well, but for every new personal identifier I want to match, I have to add to the formula (+ISNUMBER(SEARCH(I?,Sheet1!K:K))). This formula also breaks if there're any empty cells referenced in column (i) of sheet2.
Is there a way to match the personal identifiers listed on sheet2 column (i) by referencing the entire column I:I, while using the search function? +ISNUMBER(SEARCH(I:I,Sheet1!K:K))
Thank you so much in advance for taking the time.
I'm trying to extract data from sheet1 into sheet2. One of the columns in sheet1 contains a personal identifier along with other text.
On sheet2 I use a filter function to extract data from sheet 1 by referencing cells in sheet2 column (i) that lists the personal identifiers I'm interested in.
=FILTER(INDEX(Sheet1!A:N,SEQUENCE(ROWS(Sheet1!A:N)),{2,3,4,6,9,11}),ISNUMBER(SEARCH(I2,Sheet1!K:K))+ISNUMBER(SEARCH(I3,Sheet1!K:K))+ISNUMBER(SEARCH(I4,Sheet1!K:K)),"")
The formula above works well, but for every new personal identifier I want to match, I have to add to the formula (+ISNUMBER(SEARCH(I?,Sheet1!K:K))). This formula also breaks if there're any empty cells referenced in column (i) of sheet2.
Is there a way to match the personal identifiers listed on sheet2 column (i) by referencing the entire column I:I, while using the search function? +ISNUMBER(SEARCH(I:I,Sheet1!K:K))
Thank you so much in advance for taking the time.