Try this Totals Query, replacing with the correct table name:-
SELECT MyDate, FirstName, LastName, SSN, Sum(InAmount) AS SumOfInAmount,
Sum(OutAmount) AS SumOfOutAmount, SumOfInAmount+SumOfOutAmount AS Total
FROM [TableName]
GROUP BY MyDate, FirstName, LastName, SSN
HAVING...