PC Review


Reply
Thread Tools Rate Thread

Copy two summary ranges to master summary sheet

 
 
a m spock
Guest
Posts: n/a
 
      11th Sep 2008
I have a workbook with an ever increasing number of worksheets - one for
each sales person with a standard layout. The data on each sheet gets
summarised in specified ranges of that sheet like a1:a5 for sales of
different and g9:g13 for value of sales etc. I need a summary sheet where
for each sales person there is one row showing his name (same as worksheet
name) and only these cells.
 
Reply With Quote
 
 
 
 
Don Guillett
Guest
Posts: n/a
 
      11th Sep 2008
Why not just have the master sheet with a column for sales person name and
then filter when desired.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"a m spock" <(E-Mail Removed)> wrote in message
news:BD3B81C0-4F07-4779-B062-(E-Mail Removed)...
>I have a workbook with an ever increasing number of worksheets - one for
> each sales person with a standard layout. The data on each sheet gets
> summarised in specified ranges of that sheet like a1:a5 for sales of
> different and g9:g13 for value of sales etc. I need a summary sheet where
> for each sales person there is one row showing his name (same as worksheet
> name) and only these cells.


 
Reply With Quote
 
WhytheQ
Guest
Posts: n/a
 
      11th Sep 2008
Why not use formulas in the summary sheet (rather than vba)
You can use the INDIRECT function e.g if you have a sheet named
MySheetName:
>in cell A1 of the summary type 'MySheetName'
>in cell A2 of the summary sheet, type the formula =INDIRECT(A1 &

"A1")
This should return the value in A1 of the sheet 'MySheetName'.
Can you see how this can be applied to any new template sheets added
to the workbook, so that the data will be pulled through to the
Summary sheet?

Hope this helps,
Jason.



On 11 Sep, 15:21, a m spock <amsp...@discussions.microsoft.com> wrote:
> I have a workbook with an ever increasing number of worksheets *- one for
> each sales person with a standard layout. The data on each sheet gets
> summarised in specified ranges of that sheet like a1:a5 for sales of
> different *and g9:g13 for value of sales etc. I need a summary sheet where
> for each sales person there is one row showing his name (same as worksheet
> name) and only these cells.


 
Reply With Quote
 
a m spock
Guest
Posts: n/a
 
      11th Sep 2008
the dat i need to pull into the summary sheet is itself a summary of the data
on each worksheet. the worksheet itself is used for various other purposes.

"Don Guillett" wrote:

> Why not just have the master sheet with a column for sales person name and
> then filter when desired.
>
> --
> Don Guillett
> Microsoft MVP Excel
> SalesAid Software
> (E-Mail Removed)
> "a m spock" <(E-Mail Removed)> wrote in message
> news:BD3B81C0-4F07-4779-B062-(E-Mail Removed)...
> >I have a workbook with an ever increasing number of worksheets - one for
> > each sales person with a standard layout. The data on each sheet gets
> > summarised in specified ranges of that sheet like a1:a5 for sales of
> > different and g9:g13 for value of sales etc. I need a summary sheet where
> > for each sales person there is one row showing his name (same as worksheet
> > name) and only these cells.

>
>

 
Reply With Quote
 
a m spock
Guest
Posts: n/a
 
      11th Sep 2008
sounds good. but sorry. can't seem to make it work. let us say the sheet name
is "mysheet1" and data to be pulled from the sheet is name ranges "mysales"
and "mysalesvalue" in each sheet. there are fifty such sheets "mysheet1" to
"mysheet50". i create a coulm in the summary sheet with the sheetnames in
column A. what next?

"WhytheQ" wrote:

> Why not use formulas in the summary sheet (rather than vba)
> You can use the INDIRECT function e.g if you have a sheet named
> MySheetName:
> >in cell A1 of the summary type 'MySheetName'
> >in cell A2 of the summary sheet, type the formula =INDIRECT(A1 &

> "A1")
> This should return the value in A1 of the sheet 'MySheetName'.
> Can you see how this can be applied to any new template sheets added
> to the workbook, so that the data will be pulled through to the
> Summary sheet?
>
> Hope this helps,
> Jason.
>
>
>
> On 11 Sep, 15:21, a m spock <amsp...@discussions.microsoft.com> wrote:
> > I have a workbook with an ever increasing number of worksheets - one for
> > each sales person with a standard layout. The data on each sheet gets
> > summarised in specified ranges of that sheet like a1:a5 for sales of
> > different and g9:g13 for value of sales etc. I need a summary sheet where
> > for each sales person there is one row showing his name (same as worksheet
> > name) and only these cells.

>
>

 
Reply With Quote
 
WhytheQ
Guest
Posts: n/a
 
      13th Sep 2008
in this case not so much need for named ranges.
As an example imagine all the numbers you wish to pull through to the
summary are in A1 of every sheet and the sheets are named Sheet3 to
Sheet8, then the following can be used:

ColA ColB ColC
Sheet3 A1 =INDIRECT(B5 & "!" & C5)
Sheet4 A1 =INDIRECT(B5 & "!" & C5)
Sheet5 A1 =INDIRECT(B5 & "!" & C5)
Sheet6 A1 =INDIRECT(B5 & "!" & C5)
Sheet7 A1 =INDIRECT(B5 & "!" & C5)
Sheet8 A1 =INDIRECT(B5 & "!" & C5)

Try entering numbers in A1 of any of the sheets - they should get
pulled though to the summary.
J




On Sep 11, 5:03*pm, a m spock <amsp...@discussions.microsoft.com>
wrote:
> sounds good. but sorry. can't seem to make it work. let us say the sheet name
> is "mysheet1" and data to be pulled from the sheet is name ranges "mysales"
> and "mysalesvalue" in each sheet. there are fifty such sheets "mysheet1" to
> "mysheet50". i create a coulm in the summary sheet with the sheetnames in
> column A. what next?
>
>
>
> "WhytheQ" wrote:
> > Why not use formulas in the summary sheet (rather than vba)
> > You can use the INDIRECT function e.g if you have a sheet named
> > MySheetName:
> > *>in cell A1 of the summary type 'MySheetName'
> > *>in cell A2 of the summary sheet, type the formula =INDIRECT(A1 &
> > "A1")
> > This should return the value in A1 of the sheet 'MySheetName'.
> > Can you see how this can be applied to any new template sheets added
> > to the workbook, so that the data will be pulled through to the
> > Summary sheet?

>
> > Hope this helps,
> > Jason.

>
> > On 11 Sep, 15:21, a m spock <amsp...@discussions.microsoft.com> wrote:
> > > I have a workbook with an ever increasing number of worksheets *- one for
> > > each sales person with a standard layout. The data on each sheet gets
> > > summarised in specified ranges of that sheet like a1:a5 for sales of
> > > different *and g9:g13 for value of sales etc. I need a summary sheet where
> > > for each sales person there is one row showing his name (same as worksheet
> > > name) and only these cells.- Hide quoted text -

>
> - Show quoted text -


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Copy summary data to new sheet Darrington SD Microsoft Excel Worksheet Functions 1 1st Aug 2011 10:22 PM
How to copy from each sheet and paste to a summary sheet gordeos@gmail.com Microsoft Excel Programming 2 18th Jan 2008 09:01 PM
Copy Several named Range in many sheets to a summary sheet =?Utf-8?B?RnJhbmsgU2l0dW1vcmFuZw==?= Microsoft Excel Programming 8 10th May 2007 09:14 AM
How can i copy data from a tabbed working sheet to a summary sheet =?Utf-8?B?U3RlcGhlbkY=?= Microsoft Excel Misc 1 15th Mar 2007 03:40 PM
Same cell added to master summary sheet =?Utf-8?B?QnJ1Y2UgRnJ5?= Microsoft Excel Worksheet Functions 0 22nd Apr 2005 02:11 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:59 PM.