🔎 Position Locator

Goal: Find the numeric position of a specific character.
FIND: Exact Match (Case-Sensitive).
SEARCH: Flexible Match (Case-Insensitive).

Scanning...
Ready...

💻 Formula Structure

=FIND(find_text, within_text, [start])
  • 1. Find Text: What to look for (e.g. "d").
  • 2. Within: The source string.
  • Rule: Case-Sensitive ("D" ≠ "d").
-- Select a function...
...
Position Found:
-

⚠️ Common Pitfalls

🚫 #VALUE! Error
If the text is not found (or if FIND case doesn't match), Excel returns a #VALUE! error. Wrap in IFERROR to handle this gracefully.
1️⃣ First Match Only
These functions stop at the first match they find. To find the second match, use the optional [start_num] argument to skip the first one.