I think the title describes what I want to do, but:
For example, I want to create multiple recordsets with names created dynamically.
For intX = 0 to 5
Dim objRST(intX) As Recordset
intX = intX + 1
Next
Creating 6 recordsets named
objRST0
...
objRST5
I'd then want to process these...