View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Cush Cush is offline
external usenet poster
 
Posts: 126
Default Looping Macro Doesn't Work

Rob,
You cannot select a cell in row 0 or any row less than 1. So the
activecell.row MUST be 10 if you want to then select a cell in the
Activecell.Row-10

Your code will still produce an error, say if you were coming from row 8.

"Rob" wrote:

Nevermind I fig'd where I messed up...

Do While ActiveCell.Row < 7

Should have been

Do While ActiveCell.Row 7

"Rob" wrote:

Help. I can't seem to get this to work.

Sub Macro1()
Do While ActiveCell.Row < 7
Range("A" & ActiveCell.Row - 10).Select
Selection.ClearContents
Loop
End Sub

What did I do wrong?

Thanks
Rob