Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 216
Default Regarding data in multiple tabs in a workbook

Have 100 tabs with identical headings for data. Need to
capture this data from each and place into one worksheet
into rows. Is there a way (formula/macro??) to grab data
without having to type the tab "sheet" number for each
worksheet?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Regarding data in multiple tabs in a workbook

Dim sh as Worksheet
for each sh in ActiveWorkbook.worksheets
if lcase(sh.Name) < "summary" then
sh.Range("A1:Z26").Copy Destination:= _
worksheets("Summary").Cells(rows.count,1).End(xlup )(2)
End if
Next

--
Regards,
Tom Ogilvy

"Mike" wrote in message
...
Have 100 tabs with identical headings for data. Need to
capture this data from each and place into one worksheet
into rows. Is there a way (formula/macro??) to grab data
without having to type the tab "sheet" number for each
worksheet?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Regarding data in multiple tabs in a workbook

Hi Mike

Check out this also
http://www.rondebruin.nl/copy2.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"Mike" wrote in message
...
Have 100 tabs with identical headings for data. Need to
capture this data from each and place into one worksheet
into rows. Is there a way (formula/macro??) to grab data
without having to type the tab "sheet" number for each
worksheet?



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
Why do the tabs disappear (workbook has multiple sheets) Mel Excel Discussion (Misc queries) 1 January 20th 10 07:56 PM
How do I extract multiple tabs from an Excel workbook? Ron Finer Excel Discussion (Misc queries) 2 September 17th 08 08:54 PM
view multiple workbook tabs on start bar zsdg Setting up and Configuration of Excel 1 November 28th 07 07:12 PM
Can I use Sum Product across multiple tabs within a workbook? BillyHank Excel Worksheet Functions 3 January 5th 07 04:14 AM
how to print a complete workbook with multiple tabs on both sides Michel Drouin Excel Worksheet Functions 0 May 9th 06 07:41 PM


All times are GMT +1. The time now is 03:30 PM.

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"