E
Eric
I have a report (rptRepairRequest) that I have command button that
prints it out from a form based on the ID of that form. This works
fine. What I would like, and not sure if it is possible, is to have
another form where I can just select the ID from a drop-down and open
the same report.
My record source for the report is currently:
SELECT tblRepairList.* FROM tblRepairList WHERE
(((tblRepairList.RepairID)=Forms!frmSerReqEntry!txtRepairID));
I tried adding an OR statement at the end:
"OR (tblRepairList.RepairID)=Forms![frmRptRepairRequest]!
[cboRepairID]"
but it asks me for 'Forms!frmSerReqEntry!txtRepairID'
Are is there anyway to make this work, without making a new report?
prints it out from a form based on the ID of that form. This works
fine. What I would like, and not sure if it is possible, is to have
another form where I can just select the ID from a drop-down and open
the same report.
My record source for the report is currently:
SELECT tblRepairList.* FROM tblRepairList WHERE
(((tblRepairList.RepairID)=Forms!frmSerReqEntry!txtRepairID));
I tried adding an OR statement at the end:
"OR (tblRepairList.RepairID)=Forms![frmRptRepairRequest]!
[cboRepairID]"
but it asks me for 'Forms!frmSerReqEntry!txtRepairID'
Are is there anyway to make this work, without making a new report?