paste range to all sheets after specified sheet

J

J.W. Aldridge

from sheet "templates"
copy range A1:f13
and paste all to each sheet after "templates"

then from sheet "templates"
copy range A14:f:45
then paste formats only to each sheet after "templates"
 
J

J.W. Aldridge

Any ideas? Tried putting this together but not working....

Sub Paste_to()
Sheets("Ind Templates").Select
Range("A1:F13").Select
Selection.Copy


x = Sheets("Ind Templates").Index
For Each Sh In ThisWorkbook.Sheets
If Sh.Index > x Then
'Do something
Range("A1").Select
ActiveSheet.Paste

End If
Next

End Sub
 
R

ryguy7272

I know you gave up a little information, but can you provide some more
information please? Before and after? The better the description of the
problem, the better the description of the solution.
Thanks,
Ryan--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top