How do I use SEARCH in Excel?
Use SEARCH when you want to find character positions without case sensitivity. Enter Find text, Within text, Start position in that order, then add optional arguments when needed.
Finds text position (case-insensitive).
SEARCH(find_text, within_text, [start_num])find_text
RequiredEnter a text value (wrap with quotes when needed).
within_text
RequiredValue for within_text.
start_num
OptionalEnter a numeric value.
Use SEARCH to return the character position of "EXAMPLE" within cell C2 (Email in column C) (SEARCH is case-insensitive, so letter case does not have to match).
| # | AEmployee ID | BName | CEmail | DPayment Amount | EAmount Text |
|---|---|---|---|---|---|
| 2 | E001 | Taro Tanaka | t.tanaka@example.com | 1200 | 1200 |
| 3 | E002 | Hanako Suzuki | h.suzuki@example.com | 980 | 980 |
| 4 | E003 | Ken Sato | k.sato@example.com | 2450 | 2450 |
| 5 | E004 | Aya Takahashi | a.takahashi@example.com | 3000 | 3000 |
| 6 | |||||
| 7 | |||||
| 8 |
How to Use (Formula)
=SEARCH("EXAMPLE", C2, 1)Result
10
Use SEARCH when you want to find character positions without case sensitivity. Enter Find text, Within text, Start position in that order, then add optional arguments when needed.
Use the "Start Function Practice" button to jump straight into SEARCH drills.
The main arguments are Find text, Within text, Start position. Start with the required ones, then add optional arguments if needed.