Hi All.
I created simple form with combobox to select device and button that run report. Report Record source is:
When I select device in combobox and click button to run report my report is empty. What is my wrong?
Thanks.
I created simple form with combobox to select device and button that run report. Report Record source is:
Code:
SELECT Request_id, Date, Device, Request, Amount
FROM qRequest
WHERE (Device=Forms!fSetRequestRpt!cboDevice)
ORDER BY Date;
Thanks.