Link to home
Start Free TrialLog in
Avatar of DGWhittaker
DGWhittaker

asked on

Excell 2013 - Vlookup of phones number issue

I am trying to perform a v-lookup on a phone number.
The table I am using to define the criteria is formatted as (XXX) XXX-XXXX
The table I am using to pull the data from is formatted as XXXXXXXXXX

I changed the format to a phone number in the same format to no avail.

Any suggestions on how I can normalize this data so the vlookup will perform as needed?

I have attached the file for review

Thanks!
Dennis
December-2015-Manifests-151217.xlsm
Avatar of Rgonzo1971
Rgonzo1971

Hi,

pls try

=VLOOKUP(--SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(D2,"(",""),")","")," ",""),"-",""),Sheet1!N:Z,13,0)


Regards
try

=IFERROR(VLOOKUP(--SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(D3,"(",""),")","")," ",""),"-",""),Sheet1!N:Z,13,0),"")
ASKER CERTIFIED SOLUTION
Avatar of Professor J
Professor J

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of DGWhittaker

ASKER

Perfect!
Thanks Jim!
Dennis
you are welcome. i am glad i was able to help.