Can't find difference between two cells

Gfletch

New Member
Joined
Apr 10, 2015
Messages
16
I am having trouble finding out why there is a difference between two cells that appear to contain the same thing. Each cell contains "Mickey Mantle". I checked by using LEN but it says both cells contain 13 characters. I tried using EXACT, and EXACT returns a FALSE result. Then I used the following formula:

=MID(B5,ROW(INDIRECT("1:"&LEN(B5))),1) and
=MID(D5,ROW(INDIRECT("1:"&LEN(D5))),1)

<tbody>
</tbody>

where B5 and D5 each contain "Mickey Mantle"...and this says that the M is different...but I do not know why.

The problem is that I have a data base and need to be able to sort every players career by his Name and then the year of each of his seasons...but these 'differences' cause problems.

Thanks for any help.

<tbody>
</tbody>
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
I don't understand how your formulas will ever do anything except return the first letter of the name.
I suggest you put =MID($B$5,ROW()-4,1)=MID($D$5,ROW()-4,1) into row 5 of an empty column and copy down
 
Upvote 0
I don't understand how your formulas will ever do anything except return the first letter of the name.
I suggest you put =MID($B$5,ROW()-4,1)=MID($D$5,ROW()-4,1) into row 5 of an empty column and copy down

Thanks for the suggestion. Your formula returns TRUE, but =EXACT(B5,D5) returns FALSE. So there is a difference, but what? Is there a way to examine two cells and not only find the difference, but specifically identify what that difference is?

Thanks again.
 
Upvote 0
have you tried =exact(trim(b5),trim(d5))? There could be a space at the end that LEN doesn't count..
 
Upvote 0
Thanks for the suggestion. Your formula returns TRUE, but =EXACT(B5,D5) returns FALSE. So there is a difference, but what? Is there a way to examine two cells and not only find the difference, but specifically identify what that difference is?

Thanks again.
Did you copy my formula down? which row returned the FALSE, because that is the position of the difference

have you tried =exact(trim(b5),trim(d5))? There could be a space at the end that LEN doesn't count..

Trying TRIM is a good idea, but note that LEN counts spaces.
It may be necessary to use CLEAN() to remove nonprintable characters. in my experience they have only occurred in text downloaded from a database system
 
Upvote 0
Did you copy my formula down? which row returned the FALSE, because that is the position of the difference



Trying TRIM is a good idea, but note that LEN counts spaces.
It may be necessary to use CLEAN() to remove nonprintable characters. in my experience they have only occurred in text downloaded from a database system

This didn't work. I isolated every character in each example and then used =IF(B5=D5, "TRUE","FALSE") to test them...the only character that appears to be different is the space. I went back to the full data base and tried eliminating all spaces, but it still doesn't sort properly. Is there more than one type of character that appears as a space?
 
Upvote 0
If you have access to the database, can't you just update all of one of the Mickey Mantle values to the other so that everything groups and sorts properly?
 
Upvote 0
This didn't work. I isolated every character in each example and then used =IF(B5=D5, "TRUE","FALSE") to test them...the only character that appears to be different is the space. I went back to the full data base and tried eliminating all spaces, but it still doesn't sort properly. Is there more than one type of character that appears as a space?

How do you use =IF(B5=D5, "TRUE","FALSE") to test each character? if you are progressively removing some characters from B5 and D5 to test the remaining characters, then your result is not going to be reliable.

Question: Did you put =MID($B$5,ROW()-4,1)=MID($D$5,ROW()-4,1) into row 5 of an empty column and copy down?
What result did you get in row 5? What result did you get in row 6? what in each of the rows up to row 19?
 
Upvote 0
How do you use =IF(B5=D5, "TRUE","FALSE") to test each character? if you are progressively removing some characters from B5 and D5 to test the remaining characters, then your result is not going to be reliable.

Question: Did you put =MID($B$5,ROW()-4,1)=MID($D$5,ROW()-4,1) into row 5 of an empty column and copy down?
What result did you get in row 5? What result did you get in row 6? what in each of the rows up to row 19?

I eliminated all but one character, the same character, from both cells. comparing each to the other I got TRUE on everything except for the space.

I did put the =MID etc - got a return of TRUE
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

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