Last Row Column
Last Row Column
Last Row Column
LR = Cells(Rows.Count, "A").End(xlup).Row
LR is now a variable represinting the Row # of the last used cell in column A
Now you can use that variable in a range statement like this
Range("E1").Resize(Cells(Rows.Count,"E").End(xlUp).Row,1).Select