RP1America
Technical User
I would like to select the entire row that is one after the last row with data in it.
Select isn't producing the result that I am intending in this code. Any thoughts?
Thanks!
Code:
Dim LastRow As Object
Set LastRow = Sheet1.Range("A65536").End(xlUp)
LastRow.Offset(1, 0).Select
Selection.Copy
Set LastRow = Nothing
Select isn't producing the result that I am intending in this code. Any thoughts?
Thanks!