Macro repeating

F

Frank Kabel

Hi Bob
not quite sure what you want to achieve but may be the following will
suit:
sub foo()
Dim rng as range
Dim cell as range
set rng = range("A1:A100")
for each cell in rng
'do something with the cell range object
next
end sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top