I have this piece of code, finding the last row with data in columns A through D:
Dim LR As Long
LR = Columns("A:M").Find("*", SearchDirection:=xlPrevious, SearchOrder:=xlByRows).Row
What I want to do next is to select rows LR+1 through row 600, i.e. everything below the last row down to...