vLookup from 2 different lists

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a pallet of product to be disposed of and I need to check whether its
serial number appears on a "Approved" list or a "Not Approved" list (2
different sheets both lists named). I have currently have 2 colomns (1 for
each list) but would like to have only 1 colomn to show whether a product is
"Approved" "Not Approved" or " Not Dealt with".
Thanks for any help.
 
try
=if(iserror(vlookup(A1,Approved_list,1,0),if(iserror(A1,(not_approved_list,1,0),"Not Dealt with","Not Approved"),"Approved")
 
I have 2 worksheets, one with serial no.s of product approved for disposal
and one with serial no.s not to be disposed of. I then have a list of serial
no.s of product on a pallet that is ready for disposal and I am trying to
check to make sure that all serial no.s are on the approved list and capture
any product that should not be destroyed.
I currently have the serial no. and 2 other columns, one that looks up the
"approved" List and the other "not approved". If I get #N/A in both columns,
if tells me that the product has not been processed. It currently works but I
would like to tidy it up and have the result in one column.
Hope this is clear.

Thanks
 

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

Back
Top