VLOOKUP NOT WORKING WHEN I DOWNLOAD TEXT FROM INTERNET - format different?

sobrien1234

Board Regular
Joined
May 10, 2016
Messages
175
Office Version
  1. 365
Platform
  1. Windows
I am copying and pasting the form from this site into excel -

http://www.thegreyhoundrecorder.com.au/form-guides/addington/long-form/61154/all

The name of the dog "Jay Grim" should be in c40. It should also appear further down in B49.

When I try to vlookup the b49 name with the c40 name they are not registering as the same. There doesn't appear to be any difference in them (no spaces etc.) but I must be missing something - i.e. they must be in a different format?

Any trouble shooting suggestions?
:confused:
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
They arent the same. Go to the website. Press CTRL-A. You will see the additional character in the bottom one.
 
Upvote 0
Many times, when data is downloaded from the internet, it contains extra "special" characters that need to be cleaned up. They are often invisible (as they usually are special "non-breaking" spaces).
The easiest way to see if this is going on is to check the length of these fields downloaded from the internet.

Let's say that the downloaded entry of "Jay Grim" is in cell B2. Then enter this formula in any blank cell:
=LEN(B2)
It should return 8. If it returns anything more than that, you have some of these extra characters.
They are usually at the end, so you can find what they are with this formula:
Code:
=CODE(RIGHT(B2,1))
which returns the ASCII character value of the last character in that entry.
You can then look up the code to see what it is: https://www.asciitable.com/
 
Upvote 0

Forum statistics

Threads
1,223,264
Messages
6,171,081
Members
452,377
Latest member
bradfordsam

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