• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

EXACT function and = is giving different result and my Vlookup is not working because of that

AZEEM MOHAMED

New Member
Sir

I have a seasoned Vlookup user. However Iam facing an issue.
My lookup value is having some issue
I tried to compare my lookup value with "=" and "Exact"
The "=" gave True and "Exact" function gives false.

Vlookup returns N/A
But Xlookup is giving the correct results.

I have attached an extract of my work
Pls help
 

Attachments

  • doubt.xlsx
    35.9 KB · Views: 6
Try,

1] Your "Sheet AAAAA" have Char(63) found at the head & tail in range B5:B67

2] Select B5 >> copy the character after the last visible character >> Ctrl+"H" >> paste to "Find what" do not enter anything in the "Replace with" >> OK (Please refer to below screenshot replacements result)

84392

Then

3] Go to check your VLOOKUP result in COLUMN I and become all have values,

84393
 

Attachments

  • doubt(BY).xlsx
    89.9 KB · Views: 1
FWIW, they are actually unicode characters 8237 (at the start) and 8236 (at the end), which are apparently 'left to right override' and 'Pop directional formatting' characters respectively, whatever those may be.
 
FWIW, they are actually unicode characters 8237 (at the start) and 8236 (at the end), which are apparently 'left to right override' and 'Pop directional formatting' characters respectively, whatever those may be.
Thanks Debaser, I just used CODE function to check and returned CHAR(63) in start and end

Regards
 
I guessed as much. ;) CODE/CHAR don't understand unicode, so you need UNICODE/UNICHAR for that.
 
Try,

1] Your "Sheet AAAAA" have Char(63) found at the head & tail in range B5:B67

2] Select B5 >> copy the character after the last visible character >> Ctrl+"H" >> paste to "Find what" do not enter anything in the "Replace with" >> OK (Please refer to below screenshot replacements result)

View attachment 84392

Then

3] Go to check your VLOOKUP result in COLUMN I and become all have values,

View attachment 84393



Thank you so much Bosco
I tried to copy the last character, But i failed.

I checked the length of the string, and as you said it is 2 characters more than the visible characters.
So you are RIGHT.
When i keep the cursor in the text - I fail to copy any trailing or preceding characters
I tried with CLEAN, SUBSTITUTE, TRIM, But failed.

How did you do it
Is there any function to clean it
 
Thank you so much Bosco
.........................
Is there any function to clean it

Sorry, No

...................................
When i keep the cursor in the text - I fail to copy any trailing or preceding characters

Press Ctrl+H >> Select B5 >> Put the cursor in the right side of last character, then press mouse left key and move right, press Ctrl+C >> in "Find what" then click Ctrl+V >>"Replace with", keep blank>> press "Replace All" >> OK

Good luck
 
Back
Top