Is there a fund-raising tracker template in Access?

G

Guest

I need a (hopefully free) way to track donations to a non-profit. Ideally,
this would allow me to enter the "giving unit" (donor), and then post further
donations without entering all the info again. And, I would like it to then
auto-gernerate a printed receipt that included this gift and a year-to-date
total.
 
R

Randy

douglas_wood said:
I need a (hopefully free) way to track donations to a non-profit. Ideally,
this would allow me to enter the "giving unit" (donor), and then post
further
donations without entering all the info again. And, I would like it to
then
auto-gernerate a printed receipt that included this gift and a
year-to-date
total.

To accomplish that you will need a data model as follow:

[TABLE DONORS]
ID
Firstname
Middlename
Lastname
AddressLine1
AddressLine2
City
State
ZipCode

[TABLE DONATIONS]
xID <----------------Donor ID
Amount
DateTimeStamp

Do not forget to set the particular attributes for all the fields (data
type, size, required, etc). The ID needs to be a Primary Key - Autonumber,
and xID is a Long Integer. Also set the One-to-Many relationship (one donor
ID has many donations xIDs). You may also want to add an ID field to the
Donations table if you would be dealing with specific donations even after
they were added.

After having designed a data model similar to this one, you can do all you
asked using queries, forms and reports.

-Randy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top