Reputation: 63
I have a problem with the vlookup
, I sure that I use the function correctly, but I have a wrong result.
I tried also this code, and i have the same problem:
INDEX('F-CLIENT'!B$2:B$426;EQUIV(Feuil1!C4;('F-CLIENT'!A$2:A$426)))
For exemple: for the Code "E032" I must have this result
Upvotes: 0
Views: 190
Reputation: 10019
It looks like this has been resolved for OP in the comments but there is no explanation of the feature.
Resolution: Specify the optional range_lookup
argument at the end of your vlookup
Assign it to FALSE
(or 0
) to perform an an Exact match.
Why: It is TRUE
(or 1
) by default. This performs an Approximate match.
Check out the MSDN documentation on VLOOKUP which provides more information on what this does with examples.
Upvotes: 1