Hi,
After searching in many posts under the queries I am not able to get the solution to my problem. Here is what i intend to do:
I have created a form with an unbound Combo Box which picks its value from a list. I want to use the selection in the list as a parameter for retrieving data from an existing query. Whenever I am running the query its giving no data.
Following is the code:
SELECT [Query Log].ID, [Query Log].Query_Date, [Query Log].Query_Time, [Query Log].Query_Status, [Query Log].Remarks, [Query Log].Customer, [Query Log].Requestor_Name, [Requestor Names].Coordinator
FROM [Query Log] INNER JOIN [Requestor Names] ON [Query Log].Requestor_Name=[Requestor Names].Requestor_Name
WHERE ((([Query Log].Query_Status)<>"Submitted & Closed" And ([Query Log].Query_Status)<>"Dropped")) And ([Requestor Names].Coordinator)=[Forms]![Queriesparameter]![Coordinator]
Any resolution will be really helpful.
After searching in many posts under the queries I am not able to get the solution to my problem. Here is what i intend to do:
I have created a form with an unbound Combo Box which picks its value from a list. I want to use the selection in the list as a parameter for retrieving data from an existing query. Whenever I am running the query its giving no data.
Following is the code:
SELECT [Query Log].ID, [Query Log].Query_Date, [Query Log].Query_Time, [Query Log].Query_Status, [Query Log].Remarks, [Query Log].Customer, [Query Log].Requestor_Name, [Requestor Names].Coordinator
FROM [Query Log] INNER JOIN [Requestor Names] ON [Query Log].Requestor_Name=[Requestor Names].Requestor_Name
WHERE ((([Query Log].Query_Status)<>"Submitted & Closed" And ([Query Log].Query_Status)<>"Dropped")) And ([Requestor Names].Coordinator)=[Forms]![Queriesparameter]![Coordinator]
Any resolution will be really helpful.