Home Resource Centre Find Formula In Excel: Syntax, Examples, Applications

Excel Blog Series Table of content:

Find Formula In Excel: Syntax, Examples, Applications

Microsoft Excel is packed with functions that make working with data efficient and versatile. One such essential function is the FIND formula, which helps locate specific text within a string. This function is particularly useful for text analysis, cleaning data, and extracting information based on specific criteria.

In this article, we’ll dive into how to use the FIND formula effectively, with examples and practical applications.

What is the FIND Formula in Excel?

The FIND function in Excel locates the position of a specific substring (text) within a larger string. It returns a numeric value representing the starting position of the substring. If the substring is not found, the function returns an error.

Syntax of the FIND Function:

=FIND(find_text, within_text, [start_num])

Parameters:

  1. find_text (required): The text you want to locate.
  2. within_text (required): The text in which you want to search.
  3. start_num (optional): The position in the text string where the search should begin. By default, this is 1.

How to Use the FIND Formula in Excel

Example 1: Locate a Substring Within Text

Scenario:

You want to find the position of the word "Excel" in the text: "Learn Excel easily."

Steps:

  1. Enter the formula: =FIND("Excel", "Learn Excel easily")
  2. Result: The function returns 7 because "Excel" starts at the 7th character in the string.

Explanation:

  • find_text: "Excel"
  • within_text: "Learn Excel easily"
  • start_num: Default (1), so the search begins from the first character.

Example 2: Case-Sensitive Search

The FIND function is case-sensitive, meaning it differentiates between uppercase and lowercase letters.

Scenario:

You want to find "excel" in the text: "Learn Excel easily."

Steps:

  1. Enter the formula: =FIND("excel", "Learn Excel easily")
  2. Result: The function returns a #VALUE! error because "excel" (lowercase) does not match "Excel" (uppercase).

Example 3: Find Text Starting from a Specific Position

Scenario:

You want to find the position of the second occurrence of "e" in the text: "Experience Excel."

Steps:

  1. Enter the formula: =FIND("e", "Experience Excel", 2)
  2. Result: The function returns 3 because the second "e" starts at the 3rd position.

Explanation:

  • By setting start_num to 2, the search skips the first character and begins from the 2nd position.

Advanced Applications of the FIND Function

1. Extracting Substrings with FIND and MID

You can combine FIND with other functions like MID to extract specific parts of text.

Scenario:

Extract the last name from "John Doe."

Steps:

  1. Use FIND to locate the space: =FIND(" ", "John Doe") Result: 5 (space position).
  2. Use MID to extract the last name: =MID("John Doe", FIND(" ", "John Doe") + 1, LEN("John Doe"))

2. Using FIND with IFERROR for Error Handling

Since FIND returns a #VALUE! error if the text is not found, you can use IFERROR to handle this gracefully.

Scenario:

Check if "Excel" is present in the text: "Learn advanced techniques."

Steps:

  1. Use the formula: =IFERROR(FIND("Excel", "Learn advanced techniques"), "Not Found") 
  2. Result: "Not Found"

3. Find Text in Excel Formula with Multiple Matches

If you need to find multiple occurrences of a substring, use an array formula or helper columns.

Scenario:

Find all positions of "e" in "Excel spreadsheet."

Steps:

  1. Use the formula in separate cells with varying start numbers:

    • For the first "e": =FIND("e", "Excel spreadsheet", 1)
    • For the second "e": =FIND("e", "Excel spreadsheet", FIND("e", "Excel spreadsheet") + 1)
  2. Result:

    • First "e": 1
    • Second "e": 11

Limitations of the FIND Formula

  1. Case Sensitivity: FIND is case-sensitive, unlike the SEARCH function, which is case-insensitive.
  2. Errors for Missing Text: FIND returns a #VALUE! error if the text is not found.
  3. No Reverse Search: FIND only searches from left to right and cannot search backward.

Alternatives to FIND in Excel

If you need a case-insensitive search, consider using the SEARCH function. Its syntax and operation are similar to FIND but ignore case differences.

For Example: =SEARCH("excel", "Learn Excel easily")

The formula returns 7, because the function searches for the first occurrence of the word "excel" in the text "Learn Excel easily" and counts the starting position of the match, including spaces.

Here's how it works step-by-step:

  1. Text String: "Learn Excel easily"
  2. Search Term: "excel" (case-insensitive for SEARCH)
  3. Positioning:
    • "Learn " (1–6)
    • "Excel" starts at position 7.
  4. The function identifies "Excel" (ignoring the case difference) and returns the starting position, which is 7.

This is how SEARCH differs from FIND, as FIND is case-sensitive and would not have returned a position for "excel" unless it matched the case exactly.

Tips for Using the FIND Function

  1. Combine with LEN: Use the LEN function to calculate the length of a string before or after using FIND.
  2. Pair with IFERROR: Handle errors gracefully by wrapping FIND with IFERROR.
  3. Use Helper Columns: For large datasets, split FIND calculations into helper columns for better clarity.

Conclusion

The FIND formula in Excel is a powerful tool for locating specific text within strings, especially when case sensitivity matters. Whether you're cleaning data, extracting specific information, or performing advanced text manipulations, mastering this function can enhance your efficiency. By combining it with other functions like IFERROR and MID, you can unlock even more potential.

Quiz Time!!!

  QUIZZ SNIPPET IS HERE
  QUIZZ SNIPPET IS HERE
  QUIZZ SNIPPET IS HERE

 

Frequently Asked Questions (FAQs)

Q1. What is the FIND formula in Excel?

The FIND formula locates the position of a specific substring within a string and returns its starting character index. It is case-sensitive and useful for text analysis.

Q2. How to use the FIND formula in Excel?

Use the syntax: =FIND(find_text, within_text, [start_num])

Example: =FIND("Excel", "Learn Excel easily")

This returns the position where "Excel" begins.

Q3. What is the difference between FIND and SEARCH?

  • FIND: Case-sensitive and returns errors for missing text.
  • SEARCH: Case-insensitive and more forgiving with missing text.

Q4. Can I find the nth occurrence of a substring?

Yes, you can use nested FIND functions or helper columns to locate the nth occurrence. Adjust the start_num parameter to skip previous matches.

Q5. How to handle errors in the FIND function?

Wrap the FIND formula with IFERROR: =IFERROR(FIND("Excel", "Learn techniques"), "Not Found")

Q6. How to find text starting from the end of a string?

The FIND function does not support reverse searches. Use creative combinations of functions like LEN, RIGHT, and SEARCH.

Suggested Reads: 

  1. Watermark In Excel: How To Add, Remove, Customize & More!
  2. TODAY Formula In Excel: Syntax, How To Use, Use Cases
  3. How To Count Colored Cells In Excel: 4 Simple And Easy Methods
  4. How To Arrange Alphabetically In Excel? 4 Easy Methods
Shreeya Thakur
Content Team

I am a biotechnologist-turned-writer and try to add an element of science in my writings wherever possible. Apart from writing, I like to cook, read and travel.

Updated On: 6 Feb'25, 05:42 AM IST