I'm trying to copy everything from column A in sheet1 to sheet2. The issue is that it won't be a static range, i.e the numbers of rows in column A isn't constant. Below is what I'm using that works for 100 rows, how would I change it to work for x rows? Thanks very much in advance.
Sheets("Sheet2").Range("A2:A102").Value = Sheets("Sheet1").Range("A5:A105").Value