Hi guys,
I want to take my data and paste in a specific cell in my worksheet and repeat for all worksheet.
Example,
Take A4 from Sheet 15 and paste to a worksheet1 at E2, then take B4 from Sheet 15 and paste to worksheet1 at E3
then A5 from sheet 15 to worksheet 2 at E2 etc..
I record a macro and it give this
Sheets("Sheet15").Select
Range("A4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("MC2A.txt").Select
Range("E2").Select
ActiveSheet.Paste
Sheets("Sheet15").Select
Range("B4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("MC2A.txt").Select
Range("E3").Select
Selection.Copy
How can I make it to an array and able to do the same thing for all worksheet?
Any help or suggestion would be great!
thank you!
I want to take my data and paste in a specific cell in my worksheet and repeat for all worksheet.
Example,
Take A4 from Sheet 15 and paste to a worksheet1 at E2, then take B4 from Sheet 15 and paste to worksheet1 at E3
then A5 from sheet 15 to worksheet 2 at E2 etc..
I record a macro and it give this
Sheets("Sheet15").Select
Range("A4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("MC2A.txt").Select
Range("E2").Select
ActiveSheet.Paste
Sheets("Sheet15").Select
Range("B4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("MC2A.txt").Select
Range("E3").Select
Selection.Copy
How can I make it to an array and able to do the same thing for all worksheet?
Any help or suggestion would be great!
thank you!