ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Need help with do while loop (https://www.excelbanter.com/excel-programming/324700-need-help-do-while-loop.html)

Markantesp

Need help with do while loop
 
I'm using ADO to retrieve records from an access table and store them in an
excel sheet. The following line of code populates all records at once.

Worksheets("sheet2").Range("A1").CopyFromRecordset rst

Can someone help me in writing a do while loop that will populate one record
at a time. I want the record to only write to the same cell each time. Yes,
the record will write over the previous one until it reaches the last record.
Thanks.





Dick Kusleika[_4_]

Need help with do while loop
 
Markantesp

Do While Not rs.EOF
Range("A1").Value = rs.Fields(0).Value
Range("B1").Value = rs.Fields(1).Value
etc..
rs.MoveNext
Loop

Where rs is the variable that holds your recordset.

--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com

Markantesp wrote:
I'm using ADO to retrieve records from an access table and store them
in an excel sheet. The following line of code populates all records
at once.

Worksheets("sheet2").Range("A1").CopyFromRecordset rst

Can someone help me in writing a do while loop that will populate one
record at a time. I want the record to only write to the same cell
each time. Yes, the record will write over the previous one until it
reaches the last record. Thanks.




Oliver Ferns via OfficeKB.com

Need help with do while loop
 
Hi,

Try something like this...


With RS

--
Message posted via http://www.officekb.com

Oliver Ferns via OfficeKB.com

Need help with do while loop
 
Hi,

Try something like this...


With RS

--
Message posted via http://www.officekb.com

Oliver Ferns via OfficeKB.com

Need help with do while loop
 
oops....
sorry!


What I meant was try this..


With RS
If not .BOF then .MoveFirst

--
Message posted via http://www.officekb.com

Markantesp

Need help with do while loop
 
thankyou!

"Dick Kusleika" wrote:

Markantesp

Do While Not rs.EOF
Range("A1").Value = rs.Fields(0).Value
Range("B1").Value = rs.Fields(1).Value
etc..
rs.MoveNext
Loop

Where rs is the variable that holds your recordset.

--
Dick Kusleika
Excel MVP
Daily Dose of Excel
www.dicks-blog.com

Markantesp wrote:
I'm using ADO to retrieve records from an access table and store them
in an excel sheet. The following line of code populates all records
at once.

Worksheets("sheet2").Range("A1").CopyFromRecordset rst

Can someone help me in writing a do while loop that will populate one
record at a time. I want the record to only write to the same cell
each time. Yes, the record will write over the previous one until it
reaches the last record. Thanks.






All times are GMT +1. The time now is 08:44 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com