D
Darryl
Greetings,
I have created a report. I have also created a form that is called to get
the report
criteria.
Here is the select statement:
SELECT [NewClientCaseMasterTable.ClientCity] AS Expr1,
[NewClientCaseMasterTable.ClientState] AS Expr2,
[NewClientCaseMasterTable.LastName] AS Expr3,
[NewClientCaseMasterTable.FirstName] AS Expr4
FROM NewClientCaseMasterTable
WHERE (([NewClientCaseMasterTable.ClientCity])=([ Form]!City_popup!Clist))
ORDER BY [NewClientCaseMasterTable.ClientCity];
You can see where I try to reference the selection from the listbox on form
city_popup.
The listbox is named clist.
How do you access this value correctly ?
thanks.
I have created a report. I have also created a form that is called to get
the report
criteria.
Here is the select statement:
SELECT [NewClientCaseMasterTable.ClientCity] AS Expr1,
[NewClientCaseMasterTable.ClientState] AS Expr2,
[NewClientCaseMasterTable.LastName] AS Expr3,
[NewClientCaseMasterTable.FirstName] AS Expr4
FROM NewClientCaseMasterTable
WHERE (([NewClientCaseMasterTable.ClientCity])=([ Form]!City_popup!Clist))
ORDER BY [NewClientCaseMasterTable.ClientCity];
You can see where I try to reference the selection from the listbox on form
city_popup.
The listbox is named clist.
How do you access this value correctly ?
thanks.