Forum Discussion
Function Error
- Aug 19, 2025
second argument in the formula "a…a" doesn’t actually contain a period (.) — it contains a horizontal ellipsis character (…, Unicode U+2026). Visually, it looks similar to three dots, but Excel treats it as a completely different character, so SEARCH(".", "a…a") can’t find a match and returns an error.
You can try
=SEARCH("…","a…a") , this will return 2.
or
=SEARCH(".", SUBSTITUTE(A1, "…", "."))
Please mark as resolved if this answers your question.
second argument in the formula "a…a" doesn’t actually contain a period (.) — it contains a horizontal ellipsis character (…, Unicode U+2026). Visually, it looks similar to three dots, but Excel treats it as a completely different character, so SEARCH(".", "a…a") can’t find a match and returns an error.
You can try
=SEARCH("…","a…a") , this will return 2.
or
=SEARCH(".", SUBSTITUTE(A1, "…", "."))
Please mark as resolved if this answers your question.
- hbeer444Aug 20, 2025Copper Contributor
Thank You... Be nice if the Office help info for the Search function would mention these things! Crazy.