View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Kirsty Kirsty is offline
external usenet poster
 
Posts: 37
Default Do Until empty loop

All,

I have been trying to write a loop macro that will insert a star every 6
rows in column C until there are no values in column B.

So far I can get it to insert only the first star, know I am missing
something but not sure what. This is what I have

Range("B7").Select 'Set range to start point
Do While ActiveCell.Value < ""
ActiveCell.Offset(0, 1).FormulaR1C1 = "*"
ActiveCell.Offset(1, -1).Select
Loop

Kirsty