K
Kirsty
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
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