Query - Determine what is missing

  • Thread starter Pass-the-reality
  • Start date
P

Pass-the-reality

On my form I have 5 fields (analyst, Contracting, KMSI, GAMS and MAPD). All 5
fields are pulled from the same table. On the form I will type in an analyst
name and then under the 4 remaning fields, I will insert a date if the
analyst has taken that course. I want to run a query that will tell me the
analyst name and which courses he still needs to take. For example if Bob
was entered in as the name and there are dates for Contracting and KMSI, I
would want the report/query to tell me that Bob still needs to take GAMS and
MAPD.
 
C

Clif McIrvin

Pass-the-reality said:
On my form I have 5 fields (analyst, Contracting, KMSI, GAMS and
MAPD). All 5
fields are pulled from the same table. On the form I will type in an
analyst
name and then under the 4 remaning fields, I will insert a date if the
analyst has taken that course. I want to run a query that will tell
me the
analyst name and which courses he still needs to take. For example if
Bob
was entered in as the name and there are dates for Contracting and
KMSI, I
would want the report/query to tell me that Bob still needs to take
GAMS and
MAPD.


In the query design grid set the criteria for Contracting to IsNull,
then drop one line ("or") and set KMSI to IsNull, drop one line, set
GAMS to IsNull, drop one more line and set MAPD to IsNull.
 

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