VLOOKUP the * symbol

rossi789

New Member
Joined
Jul 30, 2015
Messages
31
Years ago, my business decided to prefix products to quickly identify a products "Status". Unfortunately they decided to use a *, which of course in excel denotes a wildcard character.

I am trying to vlookup a table to quickly translate the prefixes but those with a * do not lookup correctly.

Lookup Table A1:B8:

SymbolStatus
*Bespoke
#New
#*New Bespoke
+To be delisted
**Delisted
+*To be delisted bespoke
+#To be delisted New

<colgroup><col><col></colgroup><tbody>
</tbody>


Formula Test D2:E8

*Bespoke
#New
#*New
+To be delisted
**Bespoke
+*To be delisted
+#To be delisted New

<colgroup><col><col></colgroup><tbody>
</tbody>

Formula: =VLOOKUP(D2,$A$2:$B$8,2,FALSE)
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Escape it with a tilde:

=VLOOKUP(substitute(D2,"*","~*"),$A$2:$B$8,2,FALSE)
 
Upvote 0

Forum statistics

Threads
1,215,519
Messages
6,125,299
Members
449,218
Latest member
Excel Master

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top