Cross reference two spreadsheets

ksaab

Registered User.
Local time
Today, 15:23
Joined
Sep 25, 2002
Messages
38
Thank you for reading this!

I am not a spreadsheet person..BUT

I have two spreadsheets - each have Employee ID #'s one has emails one does not...

How do I "Link" the tables on Employee ID and add emails to the spreadsheet without them.

I could do this in Access but this is a solution for an end user who ONLY has access to Excel.

Thanks!:o
 
Hi, ksaab,

have a look at the VLookup function in the Online Help, maybe with an IsError-Trapping to the formula. A1 holds the ID which is located on column A in Sheet2 as well while column B holds the email address:

Code:
=VLOOKUP(A1,Sheet2!A:B,2,0)
Code:
=IF(ISERROR(VLOOKUP(A2,Sheet2!A:B,2,0)),"",VLOOKUP(A2,Sheet2!A:B,2,0))
Ciao,
Holger
 

Users who are viewing this thread

Back
Top Bottom