the Access tool was created for use with relational data. if you want to use
it effectively and harness its' power, you need to learn the basics of
relational design principles (normalization). for more information, see
http://home.att.net/~california.db/tips.html#aTip1.
Some kids have graduated and moved
away, so I want to take those kids out of the main table and put them in
their own table so I don't lose their information.
i guessed as much. you can add a field "Inactive" (or whatever you want to
call it) to the table of members, data type Yes/No or Date/Time (depending
on whether you want to record *when* a person has become inactive, or simply
inactive yes or no). build a query based on the members table, with criteria
on the Inactive field (False if it's a Yes/No field, or Is Null if it's a
Date/Time field). as Rick said, base your report on the query, not directly
on the table.
hth