K
KerryF
My tblPeople table has a unique ID, people's names, and address. The
tblContrib table has a unique ID for each contribution, the date of the
contribution (which is unique for a given date and person's ID), the ID from
the tblPeople table, and other fields. Being that one person can make many
contribution over time the tblPeople ID will appear many times in the
tblContrib table. If a person has never made a contribution, then their ID
will not be in the tblContrib table.
From the tblContrib table, I want a list of unique tblPeople table ID's and
the cooresponding date of the contribution. When a person has given multiple
contributions over the years, the date of the contribution must be the latest
date. If a person has given only one contribution several years ago, then I
want that ID and date.
Thanks for your help.
tblContrib table has a unique ID for each contribution, the date of the
contribution (which is unique for a given date and person's ID), the ID from
the tblPeople table, and other fields. Being that one person can make many
contribution over time the tblPeople ID will appear many times in the
tblContrib table. If a person has never made a contribution, then their ID
will not be in the tblContrib table.
From the tblContrib table, I want a list of unique tblPeople table ID's and
the cooresponding date of the contribution. When a person has given multiple
contributions over the years, the date of the contribution must be the latest
date. If a person has given only one contribution several years ago, then I
want that ID and date.
Thanks for your help.