Asterisk - in formula, big problem

Bilingual

Board Regular
Joined
Oct 1, 2010
Messages
186
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Hi , i have a lot of address strings where i used LEFT to separate the first field in another column, as all adress strings which begins with special characters needs to be grouped.

As asterisk is a wild card it creates huge problems, i can easily separate the character but my lookup formulas does not work with it, other special characters are fine:


Example

*SP.SKOLEN BRAMSNÆSVIG

I need to separate the Asterisk in one row and look it up in another table, but it does not find it, any solutions?
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
You need to escape the wildcard by preceding it with a tilde (~). Does this help you?


Excel 2010
ABCDE
1*SP.SKOLEN BRAMSNSVIGWrongA1SP.SKOLEN BRAMSNSVIGA
2RightC2SP.SKOLEN BRAMSNSVIGB
3*SP.SKOLEN BRAMSNSVIGC
44SP.SKOLEN BRAMSNSVIGD
55SP.SKOLEN BRAMSNSVIGE
Sheet1
Cell Formulas
RangeFormula
C1=VLOOKUP(A1,D1:E5,2,FALSE)
C2=VLOOKUP(SUBSTITUTE(A1,"*","~*"),D1:E5,2,FALSE)
 
Upvote 0
Hi, you need to use the tidal (~) character to escape the wild card.

Something like:

Excel Workbook
ABCDE
2}Something*SP.SKOLEN BRAMSNSVIG
3*SP.SKOLEN BRAMSNSVIG
4[Another Thing
Sheet1
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,877
Members
449,056
Latest member
ruhulaminappu

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