wildcard in formula vlookup

G

Guest

I want to use the formula
"RIGHT(A33,LEN(A33)-FIND(":",A33))" in a vlookup to find a text string and
utilize a wildcard function to retrieve the field.

Example vlookup("*Accrual*",'Field Service'!C:D,2,false)

Please help!

Thanks!
 
G

Guest

Try:
=INDEX('Field Service'!D:D, MATCH("*Accrual*", 'Field Service'!C:C, 0))

Or, if I understand what you're truly looking for correctly:
=INDEX('Field Service'!D:D, MATCH("*"&RIGHT(A33,LEN(A33)-FIND(":",A33))&"*",
'Field Service'!C:C, 0))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top