Link to home
Start Free TrialLog in
Avatar of Jim Metcalf
Jim MetcalfFlag for United States of America

asked on

I think i need to use vlookup but unsure

first of all, I don't know how to use vlookup.

I have two spreadsheets.  both of them have a column in them for employee id.
one (1) spreadsheet has employee id's that are employed and no longer employed and two (2)  spreadsheet has all active employees.
im trying to identify all the employees that are listed in the (1) spreadsheet that are no longer employed by cross referencing it to spreadsheet 2.


how should I go about this?
Avatar of Naresh Patel
Naresh Patel
Flag of India image

will you attach sample file.

Thanks
Avatar of Roy Cox
VLOOKUP will work between workbooks and will not require the source workbook to actually be open. You must reference the other workbook in the formula. Maybe attach a couple of sample workbooks with private information masked
ASKER CERTIFIED SOLUTION
Avatar of Saurabh Singh Teotia
Saurabh Singh Teotia
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Are you referring to worksheets or different workbooks?

Another alternative would be a PivotTable
Avatar of Jim Metcalf

ASKER

spreadsheet 1 contains employees with one being fired
spreadsheet 2 contains all active employees

I need spreadsheet 1 to tag the fired employee from the information in spreadsheet 2
1.xlsx
2.xlsx
As Mr.Saurabh Singh Teotia,  

Suggested
=IF(C2="","",IF(COUNTIF([2.xlsx]Sheet1!$C:$C,C2)>0,"Active","Fired"))

Open in new window

try this (Open Both WB) past this formula in 1.xls cell D2 and formula drop down.

and you done.


Thanks
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial