Hi
I'm looking for some help to write a code to complete the same task across a number of worksheets and have no idea where to start.
Basically I have 20 Worksheets currently. The first one is called "index", then I have 17 called App1, App2, App3 etc up to App17 and a final two called Collate and register.
What I want to do is to copy cells A2:E2 from App1 and paste it in the next blank row of "index". I then want to do the same in App2 and so on to App17 and then stop. I don't want it to do the same in index,Collate or Register.
in the past i have used something like (this is from something else I am using at the moment)
Is there a way without having to write code for each sheet (which seems very inefficient) to complete the same task but ignore the three other tabs.
Many thanks for any help you can offer
I'm looking for some help to write a code to complete the same task across a number of worksheets and have no idea where to start.
Basically I have 20 Worksheets currently. The first one is called "index", then I have 17 called App1, App2, App3 etc up to App17 and a final two called Collate and register.
What I want to do is to copy cells A2:E2 from App1 and paste it in the next blank row of "index". I then want to do the same in App2 and so on to App17 and then stop. I don't want it to do the same in index,Collate or Register.
in the past i have used something like (this is from something else I am using at the moment)
HTML:
Sheets("App1").Select
Range("a2:e2").Select
Application.CutCopyMode = False
Selection.COPY
Range("a1").Select
Sheets("index").Select
Range("a2").Select
ActiveSheet.Paste
Sheets("App2").Select
Range("a2:e2").Select
Application.CutCopyMode = False
Selection.COPY
Range("a1").Select
Sheets("index").Select
Range("a2").Select
ActiveSheet.Paste
Is there a way without having to write code for each sheet (which seems very inefficient) to complete the same task but ignore the three other tabs.
Many thanks for any help you can offer