Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to copy ("R17:X47") from Sheet1 and paste it in
("Y17:AE47") in each of the other Sheets. Any help is appreciated. Thanks, Murphy |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this
Sub Test() Dim sh As Worksheet Dim rng As Range Application.ScreenUpdating = False Set rng = Sheets("Sheet1").Range("R17:X47") For Each sh In ThisWorkbook.Worksheets If sh.Name < "Sheet1" Then rng.Copy sh.Range("Y17") End If Next Application.ScreenUpdating = True End Sub -- Regards Ron de Bruin (Win XP Pro SP-1 XL2002 SP-2) www.rondebruin.nl "Murphy" wrote in message om... I am trying to copy ("R17:X47") from Sheet1 and paste it in ("Y17:AE47") in each of the other Sheets. Any help is appreciated. Thanks, Murphy |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copying formulas in range and pasting in a selection | Excel Worksheet Functions | |||
Copying and pasting from a range | Excel Worksheet Functions | |||
Copying and pasting multiple formulas, it it possible? | Excel Discussion (Misc queries) | |||
Finding a range for Copying & Pasting | Excel Programming | |||
Automated copying & pasting from multiple sources | Excel Programming |