J
Jennifer
Hello,
I am running multiple queries right now to get some data
totals, and am hoping to be able to simplify things (I
won't list all queries I'm using, but rather will try to
explain the end results I'm looking for).
I have 2 tables: TblDonor & TblGift
TblDonor contains
DonorID (primary key)
FGDate(first gift date)
FGAmount (Currency of first)
LGDate (last gift date)
LGAmount (Currency of last)
LrgGDate(Largest gift date)
LrgGAmount (Currency of largest)
*I know that these gift fields could be calculated directly
from TblGift - but it takes too much time to run queries,
so they're stored here for ease of analysis.
TblGift
ID (primary key)
DonorID
GDate (gift date - contains all gifts for donors)
GAmount (gift amount)
I would like one query that shows me the total number of
1st time donors in one year, and the total number that also
gave the next year...
Year Total New Renewed Next Year
2002 9,000 6,000
2003 10,000 8,000
And, I would like to create another query that shows me the
total number of donors (not just 1st time) who gave in one
year and those who gave in the next year.
Thanks in advance.
Jennifer
I am running multiple queries right now to get some data
totals, and am hoping to be able to simplify things (I
won't list all queries I'm using, but rather will try to
explain the end results I'm looking for).
I have 2 tables: TblDonor & TblGift
TblDonor contains
DonorID (primary key)
FGDate(first gift date)
FGAmount (Currency of first)
LGDate (last gift date)
LGAmount (Currency of last)
LrgGDate(Largest gift date)
LrgGAmount (Currency of largest)
*I know that these gift fields could be calculated directly
from TblGift - but it takes too much time to run queries,
so they're stored here for ease of analysis.
TblGift
ID (primary key)
DonorID
GDate (gift date - contains all gifts for donors)
GAmount (gift amount)
I would like one query that shows me the total number of
1st time donors in one year, and the total number that also
gave the next year...
Year Total New Renewed Next Year
2002 9,000 6,000
2003 10,000 8,000
And, I would like to create another query that shows me the
total number of donors (not just 1st time) who gave in one
year and those who gave in the next year.
Thanks in advance.
Jennifer