Hi,
I have this code below, which selects a range in each line and paste the data in another sheet in column E in the next empty cell.
I do this for an offset up to 116 and this may increase. I am struggling to find a loop code that will loop through a set range and paste the data in Column E in the next empty cell.
Thank you very much for your help in advanced !
I have this code below, which selects a range in each line and paste the data in another sheet in column E in the next empty cell.
I do this for an offset up to 116 and this may increase. I am struggling to find a loop code that will loop through a set range and paste the data in Column E in the next empty cell.
Code:
Sheets("Brands_2018 FC").Range("W10:AC10").Copy
Sheets("Sheet9").Range("E2").PasteSpecial Transpose:=True
Sheets("Brands_2018 FC").Range("W10:AC10").Offset(1, 0).Copy
Sheets("Sheet9").Range("E2").End(xlDown).Offset(1, 0).PasteSpecial Transpose:=True
Sheets("Brands_2018 FC").Range("W10:AC10").Offset(2, 0).Copy
Sheets("Sheet9").Range("E2").End(xlDown).Offset(1, 0).PasteSpecial Transpose:=True
Thank you very much for your help in advanced !