ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   merging worksheets onto one (https://www.excelbanter.com/excel-programming/318666-merging-worksheets-onto-one.html)

Doug

merging worksheets onto one
 
Hi. I have several worksheets within in one book. While no single worksheet
is very long, there are about 50 of them. Is there a way to autmate
assembling them all onto one worksheet page? Thanks.

Ron de Bruin

merging worksheets onto one
 
Try
http://www.rondebruin.nl/copy2.htm

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


"Doug" wrote in message ...
Hi. I have several worksheets within in one book. While no single worksheet
is very long, there are about 50 of them. Is there a way to autmate
assembling them all onto one worksheet page? Thanks.




Tom Ogilvy

merging worksheets onto one
 
Dim sh as Worksheet, sh1 as Worksheet
Dim rng as Range
worksheets.Add
set sh = Activesheet
for each sh1 in Worksheets
if sh1.Name < sh.Name then
set rng = sh.Cells(rows.count,1).End(xlup)(2)
sh1.UsedRange.Copy
rng.PasteSpecial xlValues
rng.PasteSpecial xlFormats
end if
Next

--
Regards,
Tom Ogilvy

"Doug" wrote in message
...
Hi. I have several worksheets within in one book. While no single

worksheet
is very long, there are about 50 of them. Is there a way to autmate
assembling them all onto one worksheet page? Thanks.





All times are GMT +1. The time now is 07:58 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com