> The tricky part is that I have a few hundred extra rows of names in the
> spreadsheet with phone numbers only that I don't need and that aren't
> in the other spreadsheet. So, I somehow need to insert the phone
> numbers beside the appropriate names in the spreadsheet with names and
> addresses only.
one way:
I'll assume that when you write "spreadsheet" you mean workbook, or
file, rather than a worksheet within a workbook.
Assume that the workbook with the phone numbers is named
"Workboook2.xls" with the data on worksheet "Sheet1", columns A & B.
Assume further that your address workbook has the names in column A of
the desired worksheet, and that the worksheet has column labels (Name,
Address, City...Phone...) in row 1. In the Phone column, row 2 enter:
=VLOOKUP(A2,'[Workbook2.xls]Sheet1'!A:B, 2, FALSE)
and copy down as far as required.
Now select the Phone column. Copy it. Choose Edit/Paste Special,
selecting the Values radio button in the dialog. Click OK.