J
jhr_2005
I would appreciate some help to do the following: create a record set,
filter the record set and then with the filtered results, update a table. I
can start the process, but get stuck. Here is my attempt:
Dim db as DAO.Database
Dim rst as DAO.Recordset
Dim stSql as String
Set db = CurrentDB
Set rst = db.OpenRecordset("SQL_Query")
stSql ="Insert into "& rst.fields("Field1") & rst.filter = FieldYesNo=True
Here I wish to create a query to filter certain records and selects certain
fields to be append to a Table, but don't know how to do this. Your help
will be greatly appreciated.
filter the record set and then with the filtered results, update a table. I
can start the process, but get stuck. Here is my attempt:
Dim db as DAO.Database
Dim rst as DAO.Recordset
Dim stSql as String
Set db = CurrentDB
Set rst = db.OpenRecordset("SQL_Query")
stSql ="Insert into "& rst.fields("Field1") & rst.filter = FieldYesNo=True
Here I wish to create a query to filter certain records and selects certain
fields to be append to a Table, but don't know how to do this. Your help
will be greatly appreciated.