Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by kpsony

  1. kpsony

    Query for top 500 donors

    I'm sorry, but I am very new access, what is the code that I need to put in the SQL part?
  2. kpsony

    Top 500 Donors

    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?
  3. kpsony

    Query for top 500 donors

    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...
  4. kpsony

    Query for top 500 donors

    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?
  5. kpsony

    Query for Name/Address/And a single donation of $250 or more

    It automatically puts the quotes, and what is a Character string? :-D
  6. kpsony

    Query for Name/Address/And a single donation of $250 or more

    I wish it were that easy, still the same error. <"250.00"
  7. kpsony

    Query for Name/Address/And a single donation of $250 or more

    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"..
  8. kpsony

    Query for Name/Address/And a single donation of $250 or more

    The DonorID/Gift Date/Gift Amount/ are in the 'tblegifts' FIRST/LAST/ADDRES/CITY/STATE/ZIP are in the 'TTP Database" Thanks
  9. kpsony

    Query for Name/Address/And a single donation of $250 or more

    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...
  10. kpsony

    A List of Donors

    I wanted to total by first & last name with their address. Thank you for all your patience
  11. kpsony

    A List of Donors

    oh boy--now im getting 'Join expresson not supported' then it highlights [Donor ID] = [Gift ID]
  12. kpsony

    A List of Donors

    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...
  13. kpsony

    A List of Donors

    LOL, I'm sorry--long day...
  14. kpsony

    A List of Donors

    The Fields are as follows: FIRST NAME/LAST NAME/PRIMARY ADDRES 2/ -- in our Donor DB GIFT AMOUNT/Date of Event/Donor ID/ -- in our Gift DB
  15. kpsony

    A List of Donors

    It says enter parameter value for d.name... ?

Part and Inventory Search

Back
Top