Something like this will do the job:
Option ExplicitPublic Sub TestMe() Dim lngLastRow As Long lngLastRow = 150'or come up with a function from here'https://www.rondebruin.nl/win/s9/win005.htm With x.Worksheets("SheetName") .Range(.Cells(2, 1), .Cells(lngLastRow, 1)).Copy End WithEnd Sub
In general, last row in a given column or last column in a given row is something, that you will do quite a lot of time in VBA. Thus, it is a good idea to read this:https://www.rondebruin.nl/win/s9/win005.htm