I am trying to work on a procedure to select the second to last row and all rows above it in a worksheet and copy and paste values.
I'm able to find the last row in my spreadsheet and select the entire row but I'm having a hard time offsetting the selected row. I'm getting an error related to the offset parameter.
'Removes formulas above the last line in the Auto Lease Data
Dim ALR As Long
Dim ALR2 As Long
With Sheets("Auto Lease Data")
ALR = .Range("A" & .Rows.Count).End(xlUp).Row
ALR2 = .Range("A" & ALR).EntireRow.Select
.Range(ALR2).Offset(-1).Activate
End With