Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 27
Default How to summarize 3-4 worksheets worth of data into a summary scree

Hi all

As aprt of doing a mail merge I need data from 3 worksheets to be summarised
in a 4th worksheet for mail merge reasons.

So what i have currently is a bunch of colums and rows whcih will
continously added to. Currently have around 100 candicates and on each person
there are several further colums for their data. Each person has a similar
setup in 2 other worksheets for different sets of data.

What i want is basically the 4th worksheet to show all of these and also
whenever more data is added to either sheet, this is added to the 4th
worksheet....


Thanks in advance.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 154
Default How to summarize 3-4 worksheets worth of data into a summary scree

Gareth,

I recommend starting he
http://www.rondebruin.nl/tips.htm

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"Gareth" wrote:

Hi all

As aprt of doing a mail merge I need data from 3 worksheets to be summarised
in a 4th worksheet for mail merge reasons.

So what i have currently is a bunch of colums and rows whcih will
continously added to. Currently have around 100 candicates and on each person
there are several further colums for their data. Each person has a similar
setup in 2 other worksheets for different sets of data.

What i want is basically the 4th worksheet to show all of these and also
whenever more data is added to either sheet, this is added to the 4th
worksheet....


Thanks in advance.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 27
Default How to summarize 3-4 worksheets worth of data into a summary s

Thanks thomas

i have had a look at this and seems somewhart complicated for what i am
asking.




"Thomas [PBD]" wrote:

Gareth,

I recommend starting he
http://www.rondebruin.nl/tips.htm

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"Gareth" wrote:

Hi all

As aprt of doing a mail merge I need data from 3 worksheets to be summarised
in a 4th worksheet for mail merge reasons.

So what i have currently is a bunch of colums and rows whcih will
continously added to. Currently have around 100 candicates and on each person
there are several further colums for their data. Each person has a similar
setup in 2 other worksheets for different sets of data.

What i want is basically the 4th worksheet to show all of these and also
whenever more data is added to either sheet, this is added to the 4th
worksheet....


Thanks in advance.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 154
Default How to summarize 3-4 worksheets worth of data into a summary s

Gareth,

Are all of these Worksheets in the same Workbook? It can be easier to write
a macro to combine the information into the 4th sheet if so.

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"Gareth" wrote:

Thanks thomas

i have had a look at this and seems somewhart complicated for what i am
asking.




"Thomas [PBD]" wrote:

Gareth,

I recommend starting he
http://www.rondebruin.nl/tips.htm

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"Gareth" wrote:

Hi all

As aprt of doing a mail merge I need data from 3 worksheets to be summarised
in a 4th worksheet for mail merge reasons.

So what i have currently is a bunch of colums and rows whcih will
continously added to. Currently have around 100 candicates and on each person
there are several further colums for their data. Each person has a similar
setup in 2 other worksheets for different sets of data.

What i want is basically the 4th worksheet to show all of these and also
whenever more data is added to either sheet, this is added to the 4th
worksheet....


Thanks in advance.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 27
Default How to summarize 3-4 worksheets worth of data into a summary s

Hi Thomas

yes all 3 worksheets are in same workbook / file.

ta

"Thomas [PBD]" wrote:

Gareth,

Are all of these Worksheets in the same Workbook? It can be easier to write
a macro to combine the information into the 4th sheet if so.

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"Gareth" wrote:

Thanks thomas

i have had a look at this and seems somewhart complicated for what i am
asking.




"Thomas [PBD]" wrote:

Gareth,

I recommend starting he
http://www.rondebruin.nl/tips.htm

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"Gareth" wrote:

Hi all

As aprt of doing a mail merge I need data from 3 worksheets to be summarised
in a 4th worksheet for mail merge reasons.

So what i have currently is a bunch of colums and rows whcih will
continously added to. Currently have around 100 candicates and on each person
there are several further colums for their data. Each person has a similar
setup in 2 other worksheets for different sets of data.

What i want is basically the 4th worksheet to show all of these and also
whenever more data is added to either sheet, this is added to the 4th
worksheet....


Thanks in advance.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 154
Default How to summarize 3-4 worksheets worth of data into a summary s

Gareth,

Here is a quick macro that seems to work, as I dont know your criteria or
columns etc... its a rough idea of what could be done.
Note: please create a tab named "Summary"

Public Sub Comb_Summary()

For Each sh In Sheets
sh.Select
If ActiveSheet.Name < "Summary" Then
sh.UsedRange.Copy
Sheets("Summary").Select
x = WorksheetFunction.CountA(Columns("A:A"))
Cells(x + 1, 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
If x < 0 Then
Rows(x + 1).Delete
End If
End If
Next

End Sub
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"Gareth" wrote:

Hi Thomas

yes all 3 worksheets are in same workbook / file.

ta

"Thomas [PBD]" wrote:

Gareth,

Are all of these Worksheets in the same Workbook? It can be easier to write
a macro to combine the information into the 4th sheet if so.

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"Gareth" wrote:

Thanks thomas

i have had a look at this and seems somewhart complicated for what i am
asking.




"Thomas [PBD]" wrote:

Gareth,

I recommend starting he
http://www.rondebruin.nl/tips.htm

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"Gareth" wrote:

Hi all

As aprt of doing a mail merge I need data from 3 worksheets to be summarised
in a 4th worksheet for mail merge reasons.

So what i have currently is a bunch of colums and rows whcih will
continously added to. Currently have around 100 candicates and on each person
there are several further colums for their data. Each person has a similar
setup in 2 other worksheets for different sets of data.

What i want is basically the 4th worksheet to show all of these and also
whenever more data is added to either sheet, this is added to the 4th
worksheet....


Thanks in advance.

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
Need help using data from multiple worksheets to create a Summary Ted Thomson Excel Discussion (Misc queries) 3 August 1st 08 12:01 AM
summarize data from multiple worksheets cdshon Excel Discussion (Misc queries) 6 December 28th 06 03:48 PM
help need to total a months worth of worksheets into one report Cathi New Users to Excel 1 October 15th 06 04:46 AM
Creating a summary sheet from data across multiple worksheets Mookarts Excel Discussion (Misc queries) 1 July 17th 06 11:51 AM
Summarize multiple worksheet detail on summary sheet 061931 Excel Discussion (Misc queries) 6 May 23rd 05 02:09 PM


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