-
Microsoft Excel Office 365
Learn How to use Microsoft Excel SEARCH Function
In this article, you will learn how to use the Microsoft Excel SEARCH function and its prime function in Microsoft Excel. You will also get to know the Microsoft Excel SEARCH function return value and syntax with the help of some examples.
Microsoft Excel SEARCH Function
The Microsoft Excel SEARCH function is used to get the location of a text in a string. That means with the help of the SEARCH function; you can able to return the location of one text string inside another. The SEARCH function returns the location of the first character, or you can say find-text within-text. The SEARCH function is different from the FIND function and allows wildcards, and is not case sensitive.
Microsoft Excel SEARCH Function Return Value
It will return the number representing the location of the find-text.
Microsoft Excel SEARCH Function Syntax
= SEARCH(find-text, within-text, [start-num])
Where the arguments:
- find-text: This is the text to find.
- within-text: The text string from which you find the text.
- start-num: Starting position in the text string to search from; it is optional and defaults to 1.
How to Use Microsoft Excel SEARCH Function?
As we know, the SEARCH function is used to return the position as a number of one string inside another. In case there is more than one occurrence of the search string, the SEARCH function will return the location of the first occurrence.
The SEARCH function is not case sensitive and also supports wildcards. You can use the FIND function to search the case-sensitive operation. In case the SEARCH function does not find anything, it will return the #VALUE error.
Also, remember in case the find-text is empty, the SEARCH function will return the 1 as a value. This can create a false positive when the find-text comes from the cell, and it is empty. Let us understand the SEARCH function with the help of examples given below:
Example 1: = SEARCH("A", "Angle") - This will return 1.
Example 2: = SEARCH("The", "The car in the far" ,4) - This will return 4.
Check out the list of all other articles:
- Learn How to Get nth Match in Microsoft Excel
- Learn How to Find Missing Values in Microsoft Excel
- Learn How to Get nth Smallest Value With Criteria in Microsoft Excel
- Learn How to Sort by Text Length in Microsoft Excel
- Learn How to Sort by Two Columns in Microsoft Excel
- Learn How to Sort by Random in Microsoft Excel
- Learn How to Sort by One Column in Microsoft Excel
- Learn How to Sort by Custom List in Microsoft Excel
Comments