How do I find out what items are in one list but not in another l.

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

Guest

How do I find out what items in one list are not the same items in another
list. For example, I have a list of people that need to be trained (list A),
and I have a list of people that have recieved the training (List B). I need
an easy way of finding who has not yet been trained from list A.
 
With list A in col. A and list B in col. C, try this in
B1 and fill down:

=IF(COUNTIF(C:C,A1),"","Not Trained")

HTH
Jason
Atlanta, GA
 

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