I wish to use the curent database so that I do not need to reenter basic info
on each person in the database.
But I wish the database to only reflect the new info.
How can I do this?
In a properly normalized database the person information would be
stored in the People table, and payment information in a separate
Payments table; there would be no need to reenter anything. For that
matter, in your Payments table there shouldn't be anything special
about a new year - you could just enter the payment date and payment
amount, and use Queries to display the payments from a particular
year. The previous years' data could be kept (you may want it for year
to year comparisons for example) but you could use a Query selecting
only the current year's data to display payments.
How are your tables structured?
John W. Vinson[MVP]