kermitforney
Technical User
Getting a dreaded Enter "Parameter Value" message. I have a fomr setup that runs off of a query. I have a subform that also runs from a query, although it is a different query and not based on the main form's query. So when I test it using Form View I get the error message.
Here is the query:
SELECT DISTINCTROW tblcpPlans.*
FROM tblcpPlans
WHERE (((tblcpPlans.cpCommID)=Forms!frmCommProfile!txtCommunityID))
ORDER BY tblcpPlans.cpNumber;
Just a simple query based on the value that is present in a text box on the main form. The only reason I could think of is that the subform query is running before the main form. Therefore there is an empty text box and that is why the query is asking for a value.
Thanks in advance for any and all help guys, it is very much appreciated.
)
Here is the query:
SELECT DISTINCTROW tblcpPlans.*
FROM tblcpPlans
WHERE (((tblcpPlans.cpCommID)=Forms!frmCommProfile!txtCommunityID))
ORDER BY tblcpPlans.cpNumber;
Just a simple query based on the value that is present in a text box on the main form. The only reason I could think of is that the subform query is running before the main form. Therefore there is an empty text box and that is why the query is asking for a value.
Thanks in advance for any and all help guys, it is very much appreciated.