I can get a total between paarameter Donation Amounts with the following Query (SQL):
SELECT Contacts.LastName, Contacts.FirstName, Contacts.ContactId, Sum(Donations.[Donation Amount]) AS [SumOfDonation Amount]
FROM Contacts INNER JOIN Donations ON Contacts.ContactId = Donations.ContactID
GROUP...