Hello everybody,
I have implemented a query in Access (by the select command), which carried out a number of lines respectively names depending on a criterion. What’s more I have integrated this query into a VBA code.
Now I would like to perform more queries on the basis of these values and I would like to select these names(lines in the table) by more and more new criteria.
For an initial idea I have used OpenRecordset and the MsgBox View to display the names outside the current table:
Set db = CurrentDb
Set rst = CurrentDb.OpenRecordset("tmp")
MsgBox rst.Fields("name").Value
rst.MoveNext
Is there any way to take over these names into another query as a criterion in the select command?
Thank you and best regards,
Timo