Looping

dc2288

New Member
Joined
Mar 11, 2009
Messages
20
Hi again,

I am trying to create a loop which stops once a cell is empty.
Assuming I have declared proper DIM, my code is

Row=1

Do
Row = Row + 1
SheetName = Cells(Row, "A")
Sheets.Add.Name = SheetName
Loop Until IsEmpty(SheetName.Offset(1, 0))

Thanks!!
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Hi,

When I try to use the below I receive an error at ...
for each r in range("a1" range(''a1'').end(xldown))

I'm just learning the ropes of VBA, have I missed something obvious? VBA doesn't seem to like the range definition...

Thanks in advance...

if i understand that code correctly, this would work a lot better (or maybe just different, but you wouldn't have to worry about stopping when a cell is empty):
Code:
dim r as range, sheetname as string

  for each r in range("a1" range(''a1'').end(xldown))
    sheetname = r
      sheets.add.name = sheetname
  next r
trying to add a sheet for every value in column A?
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,279
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top