M
mdaisl
Can someone tell me how to create a recordset from a recordset?
dim db as database
dim rs1 as recordset, rs2 as recordset
set db = currentdb
set rs1 = db.openrecordset("select x, y, z from t where x = 0")
now i want to create a subset of the above recordset???
set rs2 = db.openrecordset("select x, y, z from rs1 where y = 1")
dim db as database
dim rs1 as recordset, rs2 as recordset
set db = currentdb
set rs1 = db.openrecordset("select x, y, z from t where x = 0")
now i want to create a subset of the above recordset???
set rs2 = db.openrecordset("select x, y, z from rs1 where y = 1")