In C1 on Sheet1 insert this formula:
=VLOOKUP(B1,'Sheet2'!$A$1:$B$20,2,FALSE)
then "fill" that formula on down to row 11025. Search Help for how to
quickly fill it. I'll try to explain one way:
With Cell C1 selected, and the formula in it, click in the Name Box -- the
Name Box is the text box looking area that will contain the current cell
address in it (C1), just above the column A label. In there, type C1:C11025
which will select all of those cells. Then use the regular menu to Edit |
Fill and choose Down. The formula will be placed into all rows you need it
to be put into.
Also, if there is no match to a value, you will get a #N/A! error in column
C. You can prevent that from showing up by changing that formula to:
=IF(ISNAVLOOKUP(B1,'Sheet2'!$A$1:$B$20,2,FALSE)),"",VLOOKUP(B1,'Sheet2'!$A$1:$B$20,2,FALSE))
all of that goes on one line, not split like the editor here may do. Or you
could change it to something like:
=IF(ISNAVLOOKUP(B1,'Sheet2'!$A$1:$B$20,2,FALSE)),"No Match
Found",VLOOKUP(B1,'Sheet2'!$A$1:$B$20,2,FALSE))