A
aalwazeer
Hi,
I am trying to copy a range from a number of sheets and paste it in a
diifferent range of a different sheet
Ex.: I am trying to copy the range A362 from the Sheet "First" and
paste it in range A564 of the Sheet "Last". Then I need to copy the
range from another sheet and paste it in a range of the "Last" sheet.
and so on. Basically, what I am trying to know is how can I loop (For
Next) between sheets with diffrent names without writting the name of
the sheet every time.
Sheets("First").Select
Range("A362").Select
Selection.Copy
Sheets("Last").Select
Range("A564").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Range("C2").Select
I am trying to copy a range from a number of sheets and paste it in a
diifferent range of a different sheet
Ex.: I am trying to copy the range A362 from the Sheet "First" and
paste it in range A564 of the Sheet "Last". Then I need to copy the
range from another sheet and paste it in a range of the "Last" sheet.
and so on. Basically, what I am trying to know is how can I loop (For
Next) between sheets with diffrent names without writting the name of
the sheet every time.
Sheets("First").Select
Range("A362").Select
Selection.Copy
Sheets("Last").Select
Range("A564").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Range("C2").Select