The following is what I am trying to accomplish:
I am using ADO to connect to a Query, but I only need a subset of the Query for the Recordset. My understanding of how to do that is:
rst.Open "Select * From Query WHERE Query.Field = Data;, conn ...
I have another recordset that will be providing the data:
rst.Open "Select * From Query WHERE Query.Field = rstOther!Field;, conn ...
I keep getting the error of too few arguements, so I am lost in how to do this.
Any help would be much appreciated.
I am using ADO to connect to a Query, but I only need a subset of the Query for the Recordset. My understanding of how to do that is:
rst.Open "Select * From Query WHERE Query.Field = Data;, conn ...
I have another recordset that will be providing the data:
rst.Open "Select * From Query WHERE Query.Field = rstOther!Field;, conn ...
I keep getting the error of too few arguements, so I am lost in how to do this.
Any help would be much appreciated.