Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Paste all sheets into one master sheet

Hi
I have 80 excel datasheets with identical headers in each
I want to bring them all into one sheet is this possible without cutting and
pasting each?
Many thanks in advance
(My first post)
Stephen

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Paste all sheets into one master sheet


I wouldn't relish doing this with worksheet functions (where you've
posted this).
It's certainly possible with vba, so posting in that section might get
you more responses.
If you could attach a (cut down) version of your workbook it would
pre-empt a lot of questions.


--
p45cal

*p45cal*
------------------------------------------------------------------------
p45cal's Profile: http://www.thecodecage.com/forumz/member.php?userid=558
View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=121746

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Paste all sheets into one master sheet

Thanks will do
-Stephen
"p45cal" wrote in message
...

I wouldn't relish doing this with worksheet functions (where you've
posted this).
It's certainly possible with vba, so posting in that section might get
you more responses.
If you could attach a (cut down) version of your workbook it would
pre-empt a lot of questions.


--
p45cal

*p45cal*
------------------------------------------------------------------------
p45cal's Profile: http://www.thecodecage.com/forumz/member.php?userid=558
View this thread:
http://www.thecodecage.com/forumz/sh...d.php?t=121746


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 120
Default Paste all sheets into one master sheet

try
Consolidate under Data in the menu bar
--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked

Thank You

cheers, francis

Am not a greek but an ordinary user trying to assist another



"Its me" wrote:

Hi
I have 80 excel datasheets with identical headers in each
I want to bring them all into one sheet is this possible without cutting and
pasting each?
Many thanks in advance
(My first post)
Stephen


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Paste all sheets into one master sheet

Place this macro in a regular module and execute from the destination sheet
1.

Sub bringinallsheetstoone()
For i = 2 To Sheets.Count
With Sheets(i)
dlr = Cells(Rows.Count, "a").End(xlUp).Row + 1
slr = .Cells.Find(What:="*", After:=[A1], _
SearchDirection:=xlPrevious).Row
.Rows(2).Resize(slr).Copy Rows(dlr)
End With
Next i
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Its me" wrote in message
...
Hi
I have 80 excel datasheets with identical headers in each
I want to bring them all into one sheet is this possible without cutting
and pasting each?
Many thanks in advance
(My first post)
Stephen




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default Paste all sheets into one master sheet

Hi,

Try this link -
http://datapigtechnologies.com/blog/...iles-method-1/

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Its me" wrote in message
...
Hi
I have 80 excel datasheets with identical headers in each
I want to bring them all into one sheet is this possible without cutting
and pasting each?
Many thanks in advance
(My first post)
Stephen


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
Other sheets to pick data from master sheet Salman Excel Discussion (Misc queries) 1 September 2nd 08 05:52 PM
Generating Master sheet from child sheets Sundar Excel Discussion (Misc queries) 3 June 11th 08 09:43 PM
Updating indivudal sheets thru a Master sheet Bob Excel Discussion (Misc queries) 3 March 13th 08 04:46 PM
Moving data from master sheet to new sheets Midget Excel Worksheet Functions 8 May 8th 07 03:33 AM
Getting info from individual sheets into master sheet [email protected] Excel Worksheet Functions 4 November 21st 06 10:05 AM


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