I want to create a loop which goes down from the active cell until the next non empty cell in column. I'm new in VBA and i don't know if it is possible.
Code :
Code
For i = ActiveCell.Row To *** ''''' < --- here i want the row number of the next non empty cell on column B
currentB.EntireRow.ClearContents
Next i
Until now i used IsEmpty(currentB) but in this case is not useful.
Thank you