Hi Nate,
sorry but I'm pretty new to T-SQL, you mean like this?
SELECT LEFT(SLCustomerAccount.CustomerAccountNumber, 4) AS [Account No], SOPOrderReturnLine.ItemCode,
SUM(SOPInvoiceCreditLine.InvoiceCreditQuantity) AS Expr2, SOPInvoiceCredit.DocumentDate AS Expr1
FROM SLCustomerAccount INNER JOIN
SOPInvoiceCredit ON SLCustomerAccount.SLCustomerAccountID =...