I need to run a query on our top 500 donors. We have 2 DB's that are connected. One called "Main DB", the 2nd called "Gifts DB" They are connected through the DonorID.
I need to do a query to find out our top 500 donors...
ANy help?
The problem with that is the way our Database is set up.
When someone donates more that once, it adds them into the DB as follows:
First/Last/DONORID/AMOUNT/Date
Jack/Wilson/1131/$20.00/01/03/04
Jack/Wilson/1131/$45.00/07/05/04
So, if we sort Ascending or Descending, it will bring up the...
I need to run a query on our top 500 donors. We have 2 DB's that are connected. One called "Main DB", the 2nd called "Gifts DB" They are connected through the DonorID.
I need to do a query to find out our top 500 donors...
ANy help?
I got the query done and in the criteria part of the Gift AMOUNT field I put <$250.00 and its giving me an error of "Data type mismatch in the criteria"..
I work for a non profit and I need to run query to find out who in our DB has given a donation of $250 or more.
We have 2 Tables on named "The TTP DB" and "tblegifts"
They are connected through a column named "donor ID"
These are the fields I need to have FIRST NAME/LAST NAME/ADDRESS...
Sorry, I am still having trouble... I've tried this
SELECT [FIRST NAME], Sum(GIFT AMOUNT) As Total
FROM [The Trevor Project Database] AS D INNER JOIN tblgifts AS G ON [Donor ID] = [Gift ID]
GROUP BY [FIRST NAME]
HAVING Sum(GIFT AMOUNT) > 250
It still is not working--saying missing operator...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.