The excel FIND function is looking for a text in another text. The FIND function has NO OPTION for wild card usage and does a case sensitive search.
FIND(find_text,within_text,[start_num])
find_text, required, text that you want to find.
within_text, required, text in which you want to find the find_text.
start_num, optional, starting position to find the find_text, the default is 1.
The following are examples of the FIND function usage and the results.
=FIND(A2,B2)
You can ignore the start_num argument, by default it will be 1. The result is 6, the position of “soft” text in the “Microsoft Excel” text.
=FIND(A3,B3,C3)
Why is the result not the same as FIND Function #1? Isn’t the “SOFT” text in the “Microsoft Excel” text?
The FIND function looking for in case sensitive way, in the “Microsoft Excel” text there is a “soft” text instead of a “SOFT” text.
To do a case-insensitive search, use the SEARCH function.
=FIND(A4,B4,C4)
The result is #VALUE! error, because excel FIND function has no option for the wildcard. To search using wildcard option use the excel SEARCH function.
=FIND(A5,B5,C5)
Why is the result 14? Isn’t there “E” letter at position 11?
The FIND function searches in a case sensitive manner, so the “E” and “e” letter are two different things.
=FIND(A6,B6,C6)
The FIND function returns a #VALUE! error if the start_num argument contains a zero or a negative number.
=FIND(A7,B7,C7)
The result is #VALUE! error. No number greater than the length of the text. Use excel LEN function to determine how long is the text,
Calculate Number of Days Between Two Dates Excel has a function that calculates the number of days between two dates,…
What is Flash Fill Excel Flash Fill automatically fills your data when Excel detects a pattern in your initial data…
What is Paste Special Paste special is a paste but you can choose the result type. As we all know,…
What is the Excel TEXTJOIN Function? The excel TEXTJOIN function is the best function to concatenate strings in Excel, has…
What is the Excel CONCAT Function? The excel CONCAT function combines all data; it could be a text, a number…
What is the Excel CONCATENATE Function? The excel CONCATENATE function combines text or numbers into a text. CONCATENATE Syntax CONCATENATE(text1,…