Search for string in column

In this article you will teach yourself how to search for string in column. You may need this trick when you want to check if the cell contains string you need.

In this example you want to check if the cell contains either “text” or “string”. You will apply the formula to find string and substring in entire column.

In the data table below you see how data looks like.

Search for string in column data table

To check if “text” or “string” exist just use this formula:

=IF(IFERROR(FIND(“text”,A2,1),0)+IFERROR(FIND(“string”,A2,1),0)>0,”TRUE”,”FALSE”)

Search for string in column

This formula will display TRUE or FALSE in B column. No matter if it was a whole word or just a substring.

You can use conditional formatting if you want.

Using SEARCH and FIND

You can use the “SEARCH” or “FIND” function to search for a specific string within a column.

Here’s how you can use the “SEARCH” function:

  1. Select the cell where you want to start the search.
  2. Type “=SEARCH(” followed by the string you want to search for, and a comma.
  3. Select the cell that contains the data you want to search.
  4. Close the parenthesis, and press Enter.

Here’s an example:

=SEARCH(“dog”,A2)

This will search the value in cell A2 for the string “dog”. If the string is found, the function will return the position of the first character of the string in the cell. If the string is not found, the function will return a #VALUE! error.

You can also use the “FIND” function in a similar manner:

=FIND(“dog”,A2)

If you want to search for a string within a range of cells, you can use the “IFERROR” function along with the “SEARCH” or “FIND” function to return a specific value if the string is not found.

See also  How to Run Cohort Analysis in Excel

Here’s an example:

=IFERROR(SEARCH(“dog”,A2:A10),”Not Found”)

This will search the range of cells from A2 to A10 for the string “dog”, and if the string is not found, the function will return the value “Not Found”.

Using VLOOKUP

There’s another method to search for a string within a column in Excel, using the “VLOOKUP” function.

Here’s how you can use the “VLOOKUP” function:

  1. Select the cell where you want to start the search.
  2. Type “=VLOOKUP(” followed by the string you want to search for, a comma, and the range of cells containing the data you want to search.
  3. Add a comma and enter “1” to indicate that you want an exact match.
  4. Add a comma and enter “FALSE” to indicate that you want an exact match.
  5. Close the parenthesis, and press Enter.

Here’s an example:

=VLOOKUP(“dog”,A2:A10,1,FALSE)

This will search the range of cells from A2 to A10 for the string “dog”. If the string is found, the function will return the value in the same row, from the first column of the range. If the string is not found, the function will return an #N/A error.

Note that the “VLOOKUP” function is case-insensitive, so it will return the match even if the case of the string you’re searching for is different from the case in the cells.

Using INDEX MATCH

Another method to search for a string within a column in Excel is to use the “INDEX” and “MATCH” functions together.

Here’s how you can use the “INDEX” and “MATCH” functions:

  1. Select the cell where you want to start the search.
  2. Type “=INDEX(” followed by the range of cells containing the data you want to search.
  3. Add a comma and enter “MATCH(” followed by the string you want to search for and a comma.
  4. Select the same range of cells as in step 2.
  5. Add a comma and enter “0” to indicate that you want an exact match.
  6. Close the parenthesis twice, and press Enter.
See also  How to Edit Multiple Excel Sheets at Once

Here’s an example:

=INDEX(A2:A10,MATCH(“dog”,A2:A10,0))

This will search the range of cells from A2 to A10 for the string “dog”. If the string is found, the function will return the value in the same row from the first column of the range. If the string is not found, the function will return an #N/A error.

Like the “VLOOKUP” function, the “INDEX” and “MATCH” functions are also case-insensitive, so they will return the match even if the case of the string you’re searching for is different from the case in the cells.

Using FILTER function

Another method to search for a string within a column in Excel is to use the “FILTER” function.

Here’s how you can use the “FILTER” function:

  1. Select the cell where you want to start the search.
  2. Type “=FILTER(” followed by the range of cells containing the data you want to search.
  3. Add a comma and enter “,” followed by the string you want to search for.
  4. Close the parenthesis and press Enter.

Here’s an example:

=FILTER(A2:A10,”dog”)

This will search the range of cells from A2 to A10 for the string “dog”. If the string is found, the function will return an array of values that match the string. If the string is not found, the function will return an empty array.

Note that the “FILTER” function is case-sensitive, so it will only return the match if the case of the string you’re searching for is exactly the same as the case in the cells.

Using IF function

Another method to search for a string within a column in Excel is to use the “IF” function.

See also  How to use countif to remove duplicates?

Here’s how you can use the “IF” function:

  1. Select the cell where you want to start the search.
  2. Type “=IF(” followed by the range of cells containing the data you want to search.
  3. Add a comma and enter “=” followed by the string you want to search for.
  4. Close the parenthesis, and press Enter.

Here’s an example:

=IF(A2:A10=”dog”,1,0)

This will search the range of cells from A2 to A10 for the string “dog”. If the string is found, the function will return a value of “1” in the corresponding cell. If the string is not found, the function will return a value of “0”.

Note that the “IF” function is case-sensitive, so it will only return the match if the case of the string you’re searching for is exactly the same as the case in the cells.

You can then use the “SUM” function to count the number of matches:

=SUM(IF(A2:A10=”dog”,1,0))

This will return the total number of cells that contain the string “dog”.

Extracting first/nth/last word from the string

Let’s see now how to extract the first, the nth or the last word from the string.

Suppose you have some string in A2 cell. You want to extract some part of this string. To do this you need to use formulas below.

To extract the first word from the string just use this formula:

=IFERROR(LEFT(A2,FIND(” “,A2)-1),””)

You may also extract the first word from the string with a leading space:

=IFERROR(LEFT(A2,FIND(” “,A2)),””)

This is a formula which let you extract the nth word. You string is A1 cell and the number of occurence is in B1.

=TRIM(RIGHT(SUBSTITUTE(LEFT(TRIM(A2),FIND(“^^”,SUBSTITUTE(TRIM(A2)&” “,” “,”^^”,B2))-1),” “,REPT(” “,100)),100))

And finally the last word you can extract with below Excel formula:

=IF(ISERR(FIND(” “,A2)),””,RIGHT(A2,LEN(A2)-FIND(“*”,SUBSTITUTE(A2,” “,”*”,LEN(A2)-LEN(SUBSTITUTE(A2,” “,””))))))