Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Copy row on 2+ w'ksheets and paste to successive rows on new w/sh

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to Copy and Paste only new rows [email protected] Excel Worksheet Functions 2 April 9th 07 07:14 PM
I am not able to extend formulas to successive rows jrich15322 Excel Worksheet Functions 4 October 16th 06 01:43 PM
Combining Totals on Successive Rows Based on Two Criterion razorsharpe Excel Discussion (Misc queries) 1 August 18th 06 03:24 PM
formula to apply concatenation to successive rows of data Devo Excel Worksheet Functions 2 July 24th 06 05:42 PM
Hide Rows - copy and paste only rows that show Access101 Excel Worksheet Functions 3 March 1st 06 12:39 AM


All times are GMT +1. The time now is 03:59 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"