Yepp, I got it to work using grouping :)
SELECT ClientID, FundID, Sum(Shares) AS SumCount
FROM Transactions
WHERE SalesID = 44
GROUP BY ClientID, FundID;
I wanted to try to also include a JOIN in that SQL, but I cant get it to work.
SELECT Transactions.ClientID, Funds.FundName, Sum(Shares)...