FIND function is used to locate the position of text, or character in an available string.
FIND Function has argument two required arguments i.e. find_text, within_text and one optional argument i.e. [start_num]. If no value is provided in [start_num] argument then function will take the Default value i.e. 1
=FIND(find_text, within_text, [start_num])
find_text argument, is used to give text, character or cell reference that is required to find
within_text argument, is used to give the cell reference from which text (i.e. find_text value ) to be searched
[start_num] is optional argument and is used to specify the character from which search should start. By default, the first character is 1, however if you want search should be started from 2nd find_text value then it should be position of 2nd find_text value and so on..
Here we have some examples, where:
– “Column A” has various strings,
– “Column B” shows the sample formula that is applied,
– “Column C” shows the output of the function and
– Explanation is provided in “Column D
– Output in Cell “C2” i.e. “6” is showing that the character “u” is available at “once upon” and “u” has 6th position.
– Output in Cell “C3” i.e. “13” is showing that the character “T” is available at “Tree” and has 13th position. Also note that character “t” is ignored in “there”
– Output in Cell “C4” i.e. “8” is showing that the character “t” is available at “tree” after ignoring character “t” at “that”.
– Find function is case sensitive, means it will only search “t” for text “the” and not with “The”. If you want to find value without case sensitive, then try “SEARCH” Function
– Find function will not work with Wild characters i.e. asterisk (*), question mark (?)
– Function should give output in “General” format, however if output is not as per the desired format then we need to change the cell format to “GENERAL”.
– If function parameters are not correctly applied in the function, then it will give output as “#VALUE!” (Error).
Don’t forget to leave your valuable comments!
If you liked this article and want to learn more similar tricks, please Subscribe us
This guide shows three easy ways to make a histogram in Excel: using the built-in Histogram tool, formulas, or a PivotTable. Even though making charts is usually simple, histograms can be tricky. But in newer versions of Excel, it’s easy to create one in just a few steps. Let’s explore each method in detail.
Understand how to find median in Excel with simple steps. Understanding the middle value in a set of numbers, known as the median, is important in the data industry. Professionals often use Microsoft Excel to calculate this. Excel’s MEDIAN function helps quickly find this value from long lists of numbers. This saves time and allows for further calculations using the median value. In this article, we explain what the MEDIAN function in Excel does, why it’s useful, and two methods to find the median in your data.
How to Insert Symbol in Excel? Have you ever faced the challenge of using special character symbols in number formatting or customized number formatting? It is easy to insert any symbol in numbers i.e Delta…
INDIRECT function is used to convert the text/string into cell reference. Function provides output as the value of that cell reference.
Excel Function DATE When you work with dates in Excel, the DATE function is crucial to understand. The reason is that some other Excel functions may not always recognize dates when they are entered as…
Merge Cells in Excel Merge cells is to combine multiple cells into one cell which can further be used for giving title to the report or header to the column. It helps to create clean…