Hello,
I am trying to make this formula case sensitve vlookup.
IF(ISNA(VLOOKUP(B3,$A:$A,1,FALSE)),B3,"").
Any help would be appreciated?
Using excel 2007
Thanks
Hello,
I am trying to make this formula case sensitve vlookup.
IF(ISNA(VLOOKUP(B3,$A:$A,1,FALSE)),B3,"").
Any help would be appreciated?
Using excel 2007
Thanks
You mean?
=IF(ISNA(VLOOKUP(B3,$A:$A,1,FALSE)),"",IF(EXACT(B3,VLOOKUP(B3,$A:$A,1,FALSE)),B3,""))
Where there is a will there are many ways.
If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner
Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.
U can use this array function
=INDEX(B2:B10,MATCH(TRUE,EXACT(D4,A2:A10),0))
see attachement
Люди, питающие благие намерения, как раз и становятся чудовищами.
Regards, ?Born in USSR?
Vusal M Dadashev
Baku, Azerbaijan
Or non-array entered:
=INDEX(A2:A10,MATCH(TRUE,INDEX(EXACT(B3,A2:A10),0),0))
where you are only checking that the value in B3 exists exactly as is written in B3 within A1:A10....
Or you can use this non array IF statement. Take your pick!
=IF(ISNA(MATCH(TRUE,INDEX(EXACT(D4,A2:A10),,1),0)),"",INDEX(B2:B10,MATCH(TRUE,INDEX(EXACT(D4,A2:A10),,1),0)))
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks