LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Combining tables from several spreadsheets

"Tom Ogilvy" wrote in message ...
Dim sh as Worksheet
Dim rng as Range
for each sh in ActiveWorkook.Worksheets
if sh.name < "Summary" then
set rng = sh.Range("A1").CurrentRegion
' don't include the header row
set rng = rng.offset(1,0).Resize(rng.rows.count-1)
rng.copy Destination:=worksheets("Summary") _
.Cells(rows.count,1).End(xlup)(2)
end if
Next


What a helpful group this is. Thanks to everyone that answered me,
specially to Tom who’s solution I used.

Best Regards

--
S.B.
 
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
filters don't work after combining several spreadsheets into one Trina New Users to Excel 3 April 29th 10 06:00 PM
Combining spreadsheets grim72 Excel Worksheet Functions 4 December 16th 09 08:46 AM
Combining two spreadsheets. Gameware Excel Discussion (Misc queries) 5 March 20th 08 09:30 PM
Combining spreadsheets to a master sheet [email protected] Excel Discussion (Misc queries) 1 May 18th 07 11:28 PM
Combining information from 2 Spreadsheets into 1 japc90 Excel Discussion (Misc queries) 1 May 2nd 07 09:56 PM


All times are GMT +1. The time now is 04:17 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"