I hope you do enjoy this free blog. I only ask one thing from you in return, click in one of the ads

Saturday 17 January 2015

FIND function

Category: Text functions

What does this function do?


Returns the starting position of one string within another. Unlike SEARCH(), it does distinguish between upper case and lower case.




Syntax:


FIND( search_text, within_text, [start_num] )
  • search_text (required): The character or text string that you wish to search for
  • within_text (required): The text string that is to be searched
  • [start_num] (optional): An optional argument that specifies the position of the character from which the search should begin. If omitted, this takes on the default value of 1 (i.e. begin the search at the start of the within_text string)

Examples:


=FIND("c", "The wizard of Excel", 1) = 17
If A1 = "The wizard of Excel"
=FIND("c", A1, 1) = 17



Difference between SEARCH and FIND::


The only difference between functions and SEARCH and FIND is that the FIND function is sensitive to case.
=SEARCH("Excel", "The wizard of Excel", 1) = 15
= FIND("Excel", "The wizard of Excel, 1) = 15
however:
= SEARCH("excel", "The wizard of Excel", 1) = 15
= FIND("excel", "The wizard of Excel", 1) = # VALUE!

No comments:

Post a Comment