I have a salesman file and a sales history file. I want to list all Salesman in the Salesman file along with there sales. If there is no record in the sales file I still want to see the salesman listed. I've tried this but it doesn't seem to work. The code below is only listing salesman if they have sales in period 10. select s.humres_id , sum(q.Sales) as Sales, sum(q.Cost)as costfrom arslmfil_SQL s left outer join QIVSalesMTDYTDCustSalesPerson Q on s.humres_id = q.slspsn_nowhere Year=2014 and Period = 10group by s.humres_id