I created a drop down list in MS Access (Form) based on a Query (multiple tables), the problem is it takes about a minute to open the drop down.
If I open the Query it opens instantly.
I found out what is making the Drop down to respond so slowly. It's a criteria that I have in the Query:
In (SELECT [ObjectID] FROM [ObjectDetail] As Tmp GROUP BY [ObjectID] HAVING Count(*)>1)
If I remove this Criteria from the Query, the drop down works perfectly and instantly.
So my question is this: Is there any way to make the drop down respond quicker, while still maintaining the criteria?
This is how my drop down Query looks like :
SELECT Version_Change.ObjectID, Version_Change.Key FROM Version_Change
UNION
SELECT "(All)" as ObjectID,"" as Key FROM Version Change;