Pivot Table 'Validation'?

S

Slim Slender

Let's say I have a table, a database, as it were, in Excel. Each
record consists of a date, a person's name, and a couple of other
things. The name field is validated by a list on another sheet. But
not only do I want to restrict the names on the DB to names on the
validation list, I expect every name on that list to eventually show
up in the DB. Is there a way I can do a pivot table or something to
get information from the DB and include the master of names to also
show who isn't showing up? I know it isn't the 'show items with no
data' field option.
 
M

Matt Geare

Hi,

I tend to use VLOOKUPs for things like this.

Something like in a column:

=IF(ISNA(VLOOKUP(Name, Masterlist, 1, False)),"Y","N")

And then filter on the "N"s to see which Names are missing.

Cheers,

Matt
 

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

Top