0
0
Google Sheetsspreadsheet~10 mins

FIND and SEARCH in Google Sheets - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data shows three text strings in column A with different letter cases. Column B contains single letters to find within the text strings.

CellValue
A1Hello World
A2hello world
A3HELLO WORLD
B1o
B2O
B3W
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 | HELLO WORLD | W |
The formula uses cell B1 ('o') as the search text and cell A1 ('Hello World') as the text to search in.
Result
    A           B       C
1 | Hello World | o | 5 |
2 | hello world | O |   |
3 | HELLO WORLD | W |   |
The formula in C1 returns 5, showing the position of 'o' in 'Hello World'.
Sheet Trace Quiz - 3 Questions
Test your understanding
What position does FIND("o", "Hello World") return?
A5
B8
C7
D2
Key Result
FIND(text_to_find, within_text) returns the position of text_to_find in within_text, case-sensitive; SEARCH is similar but case-insensitive.