Obviously new to VBA.
I want to run a while function depending on the number of rows on
second sheet. ex..
a = 1
While a <= Sheet(2).rows.count
a = a + 1
..
this doesn't work. Any help. Thanks much
One way:
This will loop through all rows based on row count of column A and assumes
row 1 is a header; adjust starting value of r (=2) and column as required.
Dim lastrow as Long, r as long
lastrow=Sheet(2).Cells(rows.count,"A").end(xlup).row
For r=2 to lastrow
......
Next r
HTH
> Obviously new to VBA.
>
[quoted text clipped - 6 lines]
> ...
> this doesn't work. Any help. Thanks much.
Paul987 - 28 Feb 2006 19:59 GMT
very nice. thank you.

Signature
Paul987