I want to go to the cell below a range of data. My macro keeps returning the last row + next row for the range. I only want the row below the range not to include the last row itself. How can I change the following?:
LastRow = Range("L" & Rows.Count).End(xlUp).Row
vRange = "L" & (LastRow + 1)
Range(vRange).Select
With Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Selection.EntireRow.Clear
End With
LastRow = Range("L" & Rows.Count).End(xlUp).Row
vRange = "L" & (LastRow + 1)
Range(vRange).Select
With Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Selection.EntireRow.Clear
End With