SELECT CUSTOMER.CUSTOMER,NAME, ISNULL(SUM(SUBTOTAL + TAXES - PAID),0.00) AS BALANCE FROM CUSTOMER LEFT OUTER JOIN ARH ON ARH.CUSTOMER = CUSTOMER.CUSTOMER WHERE INVTYPE IN('REG') AND [OPEN] = 1
GROUP BY CUSTOMER.CUSTOMER, CUSTOMER.NAME ORDER BY CUSTOMER
I want to see all the customers and if they have a matching balance then show it. But, it only shows customers with a matching balance?
Debra has a question