Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Why do the tabs disappear (workbook has multiple sheets) | Excel Discussion (Misc queries) | |||
How do I extract multiple tabs from an Excel workbook? | Excel Discussion (Misc queries) | |||
view multiple workbook tabs on start bar | Setting up and Configuration of Excel | |||
Can I use Sum Product across multiple tabs within a workbook? | Excel Worksheet Functions | |||
how to print a complete workbook with multiple tabs on both sides | Excel Worksheet Functions |