• 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.

Help with formula

N SHIVKUMAR

New Member
Good Morning Gurus
I am a recently retired bank officer. I have been following the forum and learnt a lot Thanx a lot.
I have an issue :
1. Sheet1 : Column A has records which are duplicate also.
2. Sheet2 : Column A has unique records and Column B has project description
I want records of Sheet2 Column B to be shown in Sheet1 Column B
Thanking you all in anticipation of a quick reply
Regards
 

Attachments

  • Book1.xlsb
    401.5 KB · Views: 4
Try this:

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

This will remove #N/A errors:

=IFNA(VLOOKUP(A2,Sheet2!$A$2:$B$8512,2,0),"")
 
Back
Top