Quantcast
Channel: How to copy dynamic range in Excel Sheet using vba - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Answer by Vityata for How to copy dynamic range in Excel Sheet using vba

$
0
0

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


Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>