A
Abby
HI-
I have two tables 1. Donor information (with fields: ID, last name, first
name) and 2. Donations (with fields: ID, gift date, gift amount). I have set
up a one to many relationship between the two, where there can only be one
donor but that donor can make several donations. I am trying to generate a
report that list all the donors down the left hand column, and then their
donations by year across. To do this I think I need to create new fields
(i.e. gift98, gift99, gift00, etc) and these fields would be calculated based
on the two fields Gift Date and Gift Amount. For example, if John Smith made
a gift of $300 on 5/5/2003 his gift03 value would be $300. I think it would
be something like this:
Cash98: (SELECT [Gift Amount] FROM [Donations] WHERE [Donations].[Gift Date]
Between #1/1/1998# And #1/1/1999#)
BUT this doesn't work...any help would be greatly appreciated!!!!
Thanks
I have two tables 1. Donor information (with fields: ID, last name, first
name) and 2. Donations (with fields: ID, gift date, gift amount). I have set
up a one to many relationship between the two, where there can only be one
donor but that donor can make several donations. I am trying to generate a
report that list all the donors down the left hand column, and then their
donations by year across. To do this I think I need to create new fields
(i.e. gift98, gift99, gift00, etc) and these fields would be calculated based
on the two fields Gift Date and Gift Amount. For example, if John Smith made
a gift of $300 on 5/5/2003 his gift03 value would be $300. I think it would
be something like this:
Cash98: (SELECT [Gift Amount] FROM [Donations] WHERE [Donations].[Gift Date]
Between #1/1/1998# And #1/1/1999#)
BUT this doesn't work...any help would be greatly appreciated!!!!
Thanks