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
Many tasks in Excel require comparing data in different cells. To do this, Excel offers six logical operators, also known as comparison operators. This tutorial will help you understand how these operators work and how to write efficient formulas for data analysis
COLUMN function is used to get the column reference number of the excel worksheet. COLUMN Function has only one argument.
Introduction Welcome to this comprehensive guide on using Power Query in Excel to split data efficiently. In this tutorial, we’ll walk you through the step-by-step process of splitting columns, specifically focusing on splitting the name…
This article unveils the magic of Power Query, a built-in Excel tool that simplifies data organization. Learn how to sort by single or multiple columns, create layered sorts for complex needs, and even reverse your data order entirely. Power Query puts you in control, transforming your data into a well-structured format for effortless analysis.
This tutorial shows you three easy ways to add hyperlinks in Excel. You will learn how to insert, change, and remove hyperlinks in your worksheets. It also explains how to fix links that don’t work.
Hyperlinks are often used on the internet to move between websites. In Excel, you can create links like that too. You can make a link to another cell, a different sheet, or even another workbook. You can also link to open a new Excel file or start an email message. This guide will show you how to do all of this in Excel 2016, 2013, 2010, and older versions.
Generate Random Numbers in Excel Using RAND We have got many instances where we needed to generate a random database or values. Rand function is very useful for the users who creates random database for…