Use a Query along these lines
Code:
Select FromExcel.*, YourAccessTable.EmployeeId
FROM FromExcel INNER JOIN YourAccessTable ON
FromExcel.EmployeeName = YourAccessTable.EmployeeName
Where FromExcel is the name of the Table populated with the Excel data and
YourAccessTable is the name of your table (I have a table in my acess database that contains 2 columns. The employees Name and their associated Employee ID number.)
This query would be used for your Report
OOPs: I see JoeM is quicker and not as long winded as I am.