SELECT user_tblAccountProp.Salesman, user_tblAccountProp.ID, user_tblAccountProp.Description AS Accountname, user_tblJobProp.Selling_Price, user_tblJobProp.Date_Shipped
FROM user_tblJobProp INNER JOIN (user_tblAccountChild INNER JOIN user_tblAccountProp ON user_tblAccountChild.Parent_ID = user_tblAccountProp.ID) ON user_tblJobProp.ID = user_tblAccountChild.Child_ID
GROUP BY user_tblAccountProp.Salesman, user_tblAccountProp.ID, user_tblAccountProp.Description, user_tblJobProp.Selling_Price, user_tblJobProp.Date_Shipped
HAVING (((user_tblAccountProp.Salesman)=IIf([Forms]![frmReportListing]![cboEmployName] Is Null,"*",[Forms]![frmReportListing]![cboEmployName])));