Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sub findbottom_paste()
Dim ws As Worksheet Dim rng1, rng2 As Range For Each ws In ActiveWorkbook.Worksheets(Array("Sheet1", "Sheet2", _ "Sheet4", "Sheet5")) Set rng1 = ws.Rows("6:6") Set rng2 = Sheets("Summary").Cells(Rows.Count, 1).End(xlUp) _ ..Offset(1, 0) rng1.Copy Destination:=rng2 Next ws End Sub Gord Dibben MS Excel MVP On Sat, 8 Mar 2008 11:08:00 -0800, Joe 127305 <Joe wrote: Objective is to copy say row 6 on multiple worksheets and paste each copied row onto a series of successive rows on another worksheet. I have been able to do this with lotus spreadsheets but cannot find a way to do it in excel |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to Copy and Paste only new rows | Excel Worksheet Functions | |||
I am not able to extend formulas to successive rows | Excel Worksheet Functions | |||
Combining Totals on Successive Rows Based on Two Criterion | Excel Discussion (Misc queries) | |||
formula to apply concatenation to successive rows of data | Excel Worksheet Functions | |||
Hide Rows - copy and paste only rows that show | Excel Worksheet Functions |