Thread: Loop Problem
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
smandula smandula is offline
external usenet poster
 
Posts: 116
Default Loop Problem

Dim cell As Range
...
...
Sheet1.Range("B1").Value = Sheet1.Range("B1").Value + 1
'Range("AQ3").Value = Count <---- Good for first cell only

For Each cell In Range("AQ3:AQ6")<--- Want to Loop to next empty cell
If cell.Value < "" Then cell.Value = Count
Next