Clear, practical technology insights BSOD Code Lookup · Windows Error Code Lookup · Wi-Fi Troubleshooting · PC Troubleshooting Checklist

How to Use the FIND Function in Excel?

Learn how to use FIND Function in Excel, including its purpose, syntax, examples, and common errors, with clear step-by-step guidance.

Table of Contents

This guide explains how to use FIND Function in Excel, including its syntax, required arguments, practical examples, and common errors.

Instructions for using the FIND function in Excel

The syntax of the FIND function: = FIND (find_text; within_text; [start_num]) .

Inside:

  • find_text: a character or text to search for a location.
  • within_text: the text in which you want to find find_text.
  • [start_num]: specify the start search position within within_text.

Note when using the FIND function:

  • The FIND function is case-sensitive and in-text, while Excel SEARCH function is not case-sensitive.
  • The FIND function does not support searching for characters like * find_text, find_text *, * find_text *.
  • Use [start_num] to skip the first number of characters and start at the specified position, if omitting [start_num], the default will be = 1.
  • If start_num is less than 0 or greater than the length of within_text, the function returns the error value.

1. FIND function example in Excel

1. Find the position of the letter 'h' in cell B3 and have the function perform = FIND ('h', B3) and press Enter. The result will be 5 because the first 'h' is at the 5th position in the text string, distinct from the 'H'.

1. FIND function example in Excel screenshot

2. Find the position of the word 'Giang' in cell B4, so use to find_text = Giang to find the position. Function used with the command = FIND ('Giang', B4). The result returns the first character position of the word 'Giang' in the text. If there is no 'Giang' in the text string, the #VALUES!.

1. FIND function example in Excel screenshot 2

3. Find the position of the letter 'a' in the text string starting with the 5th character . For this example, you will need to use start_num as 5. The function has the formula = = FIND ('a', B5,5) and the result is 9 for the position of the character 'a' in the text string, adjectives character 5.

1. FIND function example in Excel screenshot 3

2. The FIND function example combines the LEFT function

The FIND function in combination with the LEFT function is used to separate the first character string as in the first name, last name, area code, symbol, etc.

Finds the first character in cell B3 from left to right until it meets the character '-' and doesn't take the character '-' so there will be -1 in the function formula. We will have the combined function formula is = LEFT (B3, FIND ("-", B3) -1) and the result is Tran.

2. The FIND function example combines the LEFT function screenshot 4

3. The FIND function example combines the MID function

When combining these two functions, we will find the middle character in the text string.

Find the first '-' character in cell B4 with the FIND function, then use the MID function to separate the two characters before and after the '-' character in the text string, resulting in the middle character. The function to use is = MID (B4, FIND ("-", B4) +1, 3) and then press Enter. The result is KYP characters.

3. The FIND function example combines the MID function screenshot 5

4. Error correction of the #VALUE! Function in FIND

Report error #VALUE! in FIND function can be caused by 2 common errors.

Cause 1 : The reference value could not be found in the text string.

For example, the following formula for the FIND function reports an error because the FIND function is case sensitive. So in B5 are all uppercase letters that lowercase search function will error. Or, if there is no character to look for in the text string, also #VALUE!.

4. Error correction of the #VALUE! Function in FIND screenshot 6

Cause 2 : Error [start_num] exceeds characters in the range

For example, finding the character 'a' in any position from character 16 will give an error because the text string has all 15 characters. Now you need to correct [start_num] properly.

4. Error correction of the #VALUE! Function in FIND screenshot 7

FAQ

What does the FIND function do in Excel?

The FIND function performs the calculation described in this guide. Use the correct arguments and compatible data types for reliable results.

How do I enter the FIND function correctly?

Start with an equals sign, enter FIND, add the required arguments inside parentheses, and confirm that cell references and separators are correct.

Why does the FIND function return an error?

Common causes include missing arguments, invalid data types, incorrect cell references, unsupported values, or regional separator settings.

Discussion

Reader Comments 0

Sign in with email or Google to join the discussion.