Hi guys,
I recorded a macro but I am unable to take it to the next level and automatize the same procedure until the row ends. I am sure this is an easy problem for most of you:
Range("B2").Select
Range("B2:B49").Select
Selection.Copy
Range("D2").Select
ActiveSheet.Paste
Range("B50:B97").Select
Selection.Copy
Range("E2").Select
ActiveSheet.Paste
Range("B98:B97").Select
Selection.Copy
Range("F2").Select
ActiveSheet.Paste
It is always 48 rows that need to be copied - preferably into another sheet of the same excel file into subsequent columns - 1st 48 values into column A, 2nd 48 values into column B until column B ends.
Thanks so much in advance!
Tom
I recorded a macro but I am unable to take it to the next level and automatize the same procedure until the row ends. I am sure this is an easy problem for most of you:
Range("B2").Select
Range("B2:B49").Select
Selection.Copy
Range("D2").Select
ActiveSheet.Paste
Range("B50:B97").Select
Selection.Copy
Range("E2").Select
ActiveSheet.Paste
Range("B98:B97").Select
Selection.Copy
Range("F2").Select
ActiveSheet.Paste
It is always 48 rows that need to be copied - preferably into another sheet of the same excel file into subsequent columns - 1st 48 values into column A, 2nd 48 values into column B until column B ends.
Thanks so much in advance!
Tom