Convert your text instructions into Excel formulas, or get explanations for existing formulas.
Convert your text instructions into formulas or input a formula to have it explained.
Edit Excel online by chatting with AI
Convert your text instructions into SQL queries - powered by AI.
Generate Excel VBA (Visual Basic for Applications) code to automate tasks and create custom solutions within Microsoft Excel.
Upload your Excel file and generate beautiful charts with our AI-powered chart generator.
Convert your text into beautiful mind maps with our AI-powered mind map generator. Edit and customize your mind maps easily.
Use AI to intelligently generate and explain regular expressions, supporting various text pattern matching and data validation.
Generate beautiful images from text descriptions using AI, with multiple sizes. Free!
The SEARCH function in Excel is used to find the position of a specific character or substring within a text string. It is case-insensitive, meaning it does not distinguish between uppercase and lowercase letters. The syntax for the SEARCH function is:
=SEARCH(find_text, within_text, [start_num])
Example 1: Find the position of “apple” in the text “I have an apple.”
=SEARCH("apple", "I have an apple.")
This will return 10, as “apple” starts at the 10th character.
Example 2: Find the position of “a” starting from the 5th character in “banana”.
=SEARCH("a", "banana", 5)
This will return 6, as the first “a” after the 5th character is at position 6.
Note: If the find_text is not found, the function returns a #VALUE! error.