The FIND function can find a specified text string and return number that represents the starting position of the string.
Syntax
=FIND(find-text, within-text, [start-num])
Find-text: It means the text or string that you want to find.
Within-text: It means the text within which you want to find the find-text argument.
Start-num: it means the position from which you want the search to begin. If you don’t enter it, it would be 1, which starts from the beginning.
Now, let’s take some examples.
![How To Use The FIND Function In Excel (Easy Understanding) How To Use The FIND Function In Excel (Easy Understanding)](https://www.myofficetricks.com/wp-content/uploads/2022/02/image-29.png)
The function returns 3 when we search for the text office in Myofficetericks.
However, it returns an error -#VALUE! When we make it start at 4. Since it can not find start at fourth position, it returns an error.
![How To Use The FIND Function In Excel (Easy Understanding) How To Use The FIND Function In Excel (Easy Understanding)](https://www.myofficetricks.com/wp-content/uploads/2022/02/image-30.png)
When we make the start-num to be 0 or less than 0, it returns #VALUE!
![How To Use The FIND Function In Excel (Easy Understanding) How To Use The FIND Function In Excel (Easy Understanding)](https://www.myofficetricks.com/wp-content/uploads/2022/02/image-31.png)
When we want to find “Happy” in Myofficetricks. It returns to a #VALUE error. Since there is no “Happy” in within-text.
![How To Use The FIND Function In Excel (Easy Understanding) How To Use The FIND Function In Excel (Easy Understanding)](https://www.myofficetricks.com/wp-content/uploads/2022/02/image-32.png)
The FIND function is case-sensitive, so if put Office in find-text, it returns an error the same.
![How To Use The FIND Function In Excel (Easy Understanding) How To Use The FIND Function In Excel (Easy Understanding)](https://www.myofficetricks.com/wp-content/uploads/2022/02/image-33.png)
Leave a Reply