jasonphillipstx
Technical User
I have 2 tables
FAMILIES
FamilyID, Mom, Dad
CHILDREN
FamilyID, FirstName, Birthday
I have a query on the children table that selects children under age 11
qry_Kids_Under_11 returns the following columns
FamilyID, FirstName, Birthday
I want to list the families that have kids under age 11 so I can send them a postcard, but many have several kids under 11 and I do not want to send multiple cards to each family.
I hve tried several methods but get incorrect results. thanks in advance.
FAMILIES
FamilyID, Mom, Dad
CHILDREN
FamilyID, FirstName, Birthday
I have a query on the children table that selects children under age 11
qry_Kids_Under_11 returns the following columns
FamilyID, FirstName, Birthday
I want to list the families that have kids under age 11 so I can send them a postcard, but many have several kids under 11 and I do not want to send multiple cards to each family.
I hve tried several methods but get incorrect results. thanks in advance.