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 row #600.
What's the code for this?
Tried this, but it doesn't work:
LR = LR + 1
Range(LR:600").Select
Any ideas?
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 row #600.
What's the code for this?
Tried this, but it doesn't work:
LR = LR + 1
Range(LR:600").Select
Any ideas?