Hi guys, not too good with if else loops and was looking for a little help. Im trying to run a macro where it checks if the cell below the current one is empty. If so, then delete everything from below that cell. otherwise do nothing
Code:
If ActiveCell.Value <> "" Then
ActiveCell.Offset(1).Select
Range(ActiveCell, Cells(ActiveCell.End(xlDown).Row, ActiveCell.End(xlToRight).Column)).Select
Selection.EntireRow.Delete
ElseIf ActiveCell.Offset(Is Notempty) Then
do nothing
End If