I've joined the below queries which gives me results. I then added the natdocfile and want to make sure I am getting all of the results even if there are 0. Should I add the natdocfile twice or can I just add it to one of queries and still have both queries go against the natdocfile? I hope this makes sense.select b.fo, pendinfo1, pendinfo2from(select t.fo, Isnull(COUNT(t.cossn), 0)AS PendinFO1 FROM t16pendall t left join t16pendmvt m on t.cossn = m.cossnright join natdocfile n on n.doc = t.fowhere mft_POSN1_CD in('b','d') or (MFT_POSN1_CD='a' and aged_alien_rsw='y') and m.cossn is nullGROUP BY t.fo)a join (SELECT t.fo, Isnull(COUNT(m.cossn), 0) AS pendinfo2 FROM t16pendmvt m JOIN t16pendall t ON m.cossn = t.cossn right join natdocfile n on n.doc = t.fo where ( mvt_typ = 'R' ) AND not (mvt_loc LIKE 'R%' or mvt_loc LIKE 'S%' OR mvt_loc LIKE 'V%' ) GROUP BY t.fo)b ON a.fo = b.fo Here are some of the results:FO Pendinfo1 Pendinfo2B19 392 10704 338 1317 204 2399 624 13856 1644 53