JohnEOasis
Programmer
I am retrieving information from an SQL database and storing in a recordset. I want to get a specific column in the record set and insert in into an specific column in Excel. I can loop through the record set and see all the columns however I am not sure how to get to a specific column in the recordset. Here is how I currently access the recordset:
I would appriciate any help
Code:
For Each Row In dbRows
recorfRange.offSet(nextR, 0) = Row
nextR = nextR + 1
Next
I would appriciate any help