Tom,
Rather than copying records from your original table to another, I think you
would be much better served using a query that returns only the live members.
Once created, a query behaves exactly like the table—you can edit it in
datasheet mode, or base a form on it.
If you truly wish for a separate table, the easiest way to achieve it is to
copy and paste the entire table, Data and Structure, give it a new name, and
use a Delete query to remove the unwanted records.
In either case, you will need a field that lets you distinguish between the
living and the dead, which you may have already. If you already have a
Deceased Date field, the criteria IsNull([Deceased Date]) for this field
would return only the living members. Or you can add a Live field (Yes/No),
in which case the criteria True would return the set you want.
If you’ve never created a query, you’ll find it very intuitive. Click the
New button on the Query tab and select the table. Drag all the fields to the
grid, and enter the criteria in the appropriate field in the Criteria: row.
For a delete query, select Query, Delete from the menu.
Good luck. Hope that resolves it for you.
Sprinks