SOLVED

VLook up help

Copper Contributor

Hi - I have a vendor spendsheet on Sheet1.  On Sheet1 I have just the vendor number but would like the vendor name as well - taken from Sheet2.   I have very basic Vlookup skills and its just returning #na in column B on sheet1.

7 Replies
best response confirmed by helsbrooks1981 (Copper Contributor)
Solution

@helsbrooks1981 The vendor number on Sheet1 are in fact texts, whereas they are real numbers on Sheet. On top of that, you switched some of the arguments in the VLOOKUP formula.

 

Fixed that in the attached file. See if this is what you expect.

@helsbrooks1981 

 

Or if you don't want to change the data type of the column A on Sheet1 for some reason, you may simply try the following formula....

 

On Sheet1

In B2

 

=VLOOKUP(A2+0,Sheet2!A:B,2,0)

 

and then copy it down.

 

Thank you that works @Subodh_Tiwari_sktneer 

@Subodh_Tiwari_sktneer thank you very much

Thank you very much that works

@helsbrooks1981 You're welcome!

You're welcome @helsbrooks1981!
1 best response

Accepted Solutions
best response confirmed by helsbrooks1981 (Copper Contributor)
Solution

@helsbrooks1981 The vendor number on Sheet1 are in fact texts, whereas they are real numbers on Sheet. On top of that, you switched some of the arguments in the VLOOKUP formula.

 

Fixed that in the attached file. See if this is what you expect.

View solution in original post