0
0
Excelspreadsheet~10 mins

FIND and SEARCH in Excel - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data contains text strings in column A and search characters or words in column B. We will use FIND and SEARCH to locate the position of the search text inside the strings.

CellValue
A1Hello World
A2hello world
A3Excel FIND and SEARCH
B1o
B2O
B3and
Formula Trace
=FIND(B1, A1)
Step 1: FIND("o", "Hello World")
Cell Reference Map
    A           B
1 | Hello World | o |
2 | hello world | O |
3 | Excel FIND and SEARCH | and |
The formula uses cell A1 (text) and B1 (search character) to find the position of 'o' in 'Hello World'.
Result
    A           B     C
1 | Hello World | o | 5 |
2 | hello world | O |   |
3 | Excel FIND and SEARCH | and |   |
The result 5 in cell C1 shows the position of 'o' in 'Hello World' using FIND.
Sheet Trace Quiz - 3 Questions
Test your understanding
What position does FIND(B1, A1) return?
A7
B5
C8
D10
Key Result
FIND(text_to_find, within_text) returns the position of exact match; SEARCH(text_to_find, within_text) is similar but case-insensitive.