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 A3
62 from the Sheet "First" and
paste it in range A5
64 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("A3
62").Select
Selection.Copy
Sheets("Last").Select
Range("A5
64").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 A3

paste it in range A5

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("A3

Selection.Copy
Sheets("Last").Select
Range("A5

ActiveSheet.Paste
Application.CutCopyMode = False
Range("C2").Select