Match and update Excelsheets

V

Vandy

Hi,

I have two 2 excel sheet. Sheet1 contains the emp# and noofaccess.
Sheet2 contains the employee# and noofaccess ( more than 6 times).
Based on the information from sheet1, I need to update the noofaccess
(more than 6 times) column in sheet2. For example,

Sheet1:

emp# noofacess
123 6
234 3
345 7
456

Sheet2
emp# noofaccess(more than 6 times)
123 Yes
234 No
345 Yes
456 N/A
678 N/A

COuld you please advice how to do that?. I tried the following
formula.
=IF(COUNTIF(Sheet4!A1:A4,A5)>0,IF(B1>6,"Yes")), but its not working
out.
 
T

Tom Ogilvy

In B5 of Sheet2 as an example:

=IF(ISERROR(MATCH(A5,Sheet1!A:A,0)),"No",IF(INDEX(Sheet1!B:B,MATCH(A5,Sheet1!A:A,0),1)>6,"Yes","No"))

drag fill up and down the column.
 
V

Vandy

In B5 of Sheet2 as an example:

=IF(ISERROR(MATCH(A5,Sheet1!A:A,0)),"No",IF(INDEX(Sheet1!B:B,MATCH(A5,Sheet­1!A:A,0),1)>6,"Yes","No"))

drag fill up and down the column.

--
Regards,
Tom Ogilvy








- Show quoted text -

Its working great. Thanks you very much for the quick response.

Thanks a lot..

-Chinna
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top