Find a row when you only know part of the value.
Copy this formula
=XLOOKUP("*"&A2&"*", Names, Ids, , 2)XLOOKUP match mode 2 enables wildcards; wrapping the lookup value in * matches it anywhere in the text. Use ? for a single character. VLOOKUP supports wildcards too with an exact-match FALSE.
=VLOOKUP("*"&A2&"*", Table, 2, FALSE)→Acme CorpMatches a name containing the search text.
Precede it with a tilde: "~*" matches an actual * character.
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.