The FIND function can be used with spreadsheets to locate a character or a string within another cell. It generally locates the starting point of a string. The syntax for the FIND function for usage in spreadsheets is as follows:
=FIND(”find_text”,”within_text”,start_num)
This tells the Excel FIND function to find text - thus a substring within text – thus the string and indicates where to look - thus the first position.
What will it return?
The FIND function returns the value which is associated with the start point of the string of characters within a cell.
If you want to locate a specific letter within a cell for instance, the letter “d” you will use =FIND(“b”,B1,1). By stating the starting point as 1 which is the start number in our syntax for the FIND function we ensure that we get the first instance of the letter “b” in the results. The FIND function as such is used for specific character finding and is thus more specific than the SEARCH function which is also available in Excel.
Quick notes about the FIND function:
- It is case sensitive.
- If no match is found a #VALUE! Error is returned.
What is the main difference between FIND and SEARCH?
The main difference lies in the fact that the SEARCH function is not case sensitive whereas the FIND function is. The FIND function does not support wild card usage where the SEARCH function does. As such the FIND function is more specific.
View our free online training video on using the FIND function in spreadsheets.
Recent Comments