2
I've got a problem with the vlookup() function. I search a text in a table (A column) and want to return the E-column value (E10). However, vlookup() returns the last value of the column (E35). I guess I made a mistake but I've really no clue about it. Could you help me ?
Thanks a lot !
If I put the parameter 4, it returns #N/A. I've double checked the blanks into the value and the table. – MarkUs0 – 2016-07-29T19:06:34.443
That proves the point - it does not find an exact match. From a screen copy, I can't tell where the texts would be different. Try to put A10 instead C3 in the first param, then there can be no different spelling. Or put
=c3=a10
in a free cell and see if they are equal. that is the root of your issue. – Aganju – 2016-07-29T19:09:12.463Yes, you had right. I used the trim() function and it found a blank. Thanks for your support. – MarkUs0 – 2016-07-30T02:04:40.497