Hi,
I have a query which uses a table and 2 parameters from a form. The form is loaded/open and the 2 fields have data in them.
However, when I run the query it ask for both parameters.... why would this be?
Here is sql for my query and both fields "MCode" and "Current Rev" DEFINITELY have data in them
I have a query which uses a table and 2 parameters from a form. The form is loaded/open and the 2 fields have data in them.
However, when I run the query it ask for both parameters.... why would this be?
Here is sql for my query and both fields "MCode" and "Current Rev" DEFINITELY have data in them
Code:
SELECT tbl_bomlis2.[Material code], tbl_bomlis2.[Nest efficency], tbl_bomlis2.[Cutting (sec)], tbl_bomlis2.[Nest Length (mm)], tbl_bomlis2.MCode, tbl_bomlis2.Revision INTO tbl_minorUpdate
FROM tbl_bomlis2
WHERE (((tbl_bomlis2.MCode)=[Forms]![frm_Update]![MCode]) AND ((tbl_bomlis2.Revision)=[Forms]![frm_Update]![Current rev]));