I have a form called "frmMain" and within that form there is a simple combo box (only one column) called "CustID". I'm trying to write a query that will use the selected CustID in the WHERE clause:
When I try to run that query I get the message:
"The Microsoft Office Access database engine does not recognize 'Forms!frmMain!CustID'as a valid field name or expression.'
I've checked for typos in the form and combo box names and everything else I can think of. What the heck am I doing wrong here? I'm using Access 2007.
Code:
TRANSFORM Count(EXTERNAL_TRANSACTION_ID) AS [COUNT]
SELECT CUSTOMER_ID
FROM ARGUS_B51
WHERE FIR_TRANSACTION_CD In ("F1","F2","F3") AND CUSTOMER_ID = Forms!frmMain!CustID
GROUP BY CUSTOMER_ID
PIVOT FIR_TRANSMISSION_STATUS_CD;
When I try to run that query I get the message:
"The Microsoft Office Access database engine does not recognize 'Forms!frmMain!CustID'as a valid field name or expression.'
I've checked for typos in the form and combo box names and everything else I can think of. What the heck am I doing wrong here? I'm using Access 2007.