How to check for completed records?

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

Guest

After entering data, there should be 3 records for each [member] in the
query. How do I collect the list of [members] that do not have 3 records?
 
How far have you gotten on this? Did you try a totals/group by query?
 
Something like

Select MemberName, Count(*) from MyTableOrQuery Group by MemberName where
Count(*) < 3

However it gets more complex as if a member has no entries, their name will
not be shown.

As Duane says, can you post how far you have got and perhaps details of the
Members Table and the query?
 
Thanks, that did it

JohnFol said:
Something like

Select MemberName, Count(*) from MyTableOrQuery Group by MemberName where
Count(*) < 3

However it gets more complex as if a member has no entries, their name will
not be shown.

As Duane says, can you post how far you have got and perhaps details of the
Members Table and the query?

chetNeedsSomeHelp said:
After entering data, there should be 3 records for each [member] in the
query. How do I collect the list of [members] that do not have 3 records?
 

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