It is best to create a subform control and set the source object to either a table or a query.
Me.NameOfSubformControl.SourceObject = "Query.Query1" Me.NameOfSubformControl.SourceObject = "Table.Temp"
You can also update the sql of the saved query to reference the new temp table.
source share