I didn't realize I confused anyone......There are several areas on this report that are erroring....One is the [cal_commision] field....it is a field directly from the query that this report uses as it's control...Then there are a few other text boxes that are dlookup boxes......When I said it was a calculated text box, I meant that another box uses the values from this text box in it's calculation. After I get the [cal_commision] text box working properly, I was hoping the same syntax could be used in my dlookup text box.....Did I make sense this time.....The query is posted below.
SELECT DISTINCT tbl_ats_Comm_Draw_Hist.Sls_RepID, tbl_ats_Comm_Draw_Hist.Tran_Type, tbl_ats_Comm_Draw_Hist.Cust_ID, tbl_ats_Comm_Draw_Hist.Contract_ID, tbl_ats_Comm_Draw_Hist.Calc_Comm_Draw_Amt, tbl_ats_Comm_Draw_Hist.Comm_Draw_Date, dbo_JobMaster.[Job Name - Master Reference], tbl_ats_Comm_Draw_Hist.Calc_Commision, tbl_ats_Comm_Draw_Hist.Inv_Date, tbl_ats_Comm_Draw_Hist.Inv_Num, tbl_ats_Comm_Draw_Hist.Pmt_Amt, tbl_ats_SlsRep.Rep_name, tbl_ats_Comm_Draw_Hist.Pmt_Date, tbl_ats_Comm_Draw_Hist.Search_Date, tbl_ats_Comm_Draw_Hist.EligibleForComm, tbl_ats_Contract.Search_Key
FROM tbl_ats_Contract AS tbl_ats_Contract_1, ((tbl_ats_Comm_Draw_Hist INNER JOIN dbo_JobMaster ON tbl_ats_Comm_Draw_Hist.Cust_ID = dbo_JobMaster.JobNo) INNER JOIN tbl_ats_SlsRep ON tbl_ats_Comm_Draw_Hist.Sls_RepID = tbl_ats_SlsRep.Sls_RepId) INNER JOIN tbl_ats_Contract ON tbl_ats_Comm_Draw_Hist.Contract_ID = tbl_ats_Contract.Bill_Type_ID
WHERE (((tbl_ats_Comm_Draw_Hist.Sls_RepID)=[Forms]![frmRptSalesRepPaidHist]![cboSls_RepFrom]) AND ((tbl_ats_Comm_Draw_Hist.Tran_Type)="C") AND ((tbl_ats_Comm_Draw_Hist.Calc_Commision)<>0) AND ((tbl_ats_Comm_Draw_Hist.Search_Date) Between [Forms]![frmRptSalesRepPaidHist]![DateFrom] And [Forms]![frmRptSalesRepPaidHist]![DateTo]) AND ((tbl_ats_Comm_Draw_Hist.EligibleForComm)=-1));