Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 39
Default Making a Summary from multiple worksheets

This is the first time I have posted on here so bear with me.....

I have a workbook, with 40 or so worksheets. All of the worksheets have the
same information, in the same places.

I want to pick out a summary of this information eg name, DOB, total charge
and invoice number etc. onto one sheet into columns A,B,C etc in a nice neat
little list.

I have done this before in VBA but cannot for the life of me remember the
wording (have not used VBA since). I do remember counting the columns as
numbers so column F line 26 would be 6,26, but that is all.

I am depseratly hoping that someone can help me because this is driving me
nuts now!

Thankyou so much in anticipation

Regards
Sandra
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Making a Summary from multiple worksheets

Hi Sandra

Try
http://www.rondebruin.nl/summary.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Sandra" wrote in message ...
This is the first time I have posted on here so bear with me.....

I have a workbook, with 40 or so worksheets. All of the worksheets have the
same information, in the same places.

I want to pick out a summary of this information eg name, DOB, total charge
and invoice number etc. onto one sheet into columns A,B,C etc in a nice neat
little list.

I have done this before in VBA but cannot for the life of me remember the
wording (have not used VBA since). I do remember counting the columns as
numbers so column F line 26 would be 6,26, but that is all.

I am depseratly hoping that someone can help me because this is driving me
nuts now!

Thankyou so much in anticipation

Regards
Sandra

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 119
Default Making a Summary from multiple worksheets

I haven't tried this myself so there's likely errors in the code, but
try this...

set summ = ActiveWorkbook.Worksheets("theNameOfTheSummaryShee t")
i = 1
for each sheet in ActiveWorkbook.Worksheets
if sheet.name="theNameOfTheSummarySheet" then goto SKIPTHISONE
theThingIWant = sheet.range("A1") ' adjust this to get the value
you're interested in
summ.Cells(1, i) = theThingIWant ' the first number is the row,
the second is the column
SKIPTHISONE:
next sheet

Maury
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
Summary of multiple worksheets Anto111 Excel Discussion (Misc queries) 0 June 14th 08 09:17 AM
Summary sheet for multiple worksheets JohnnieBoy Excel Discussion (Misc queries) 1 October 30th 06 05:41 PM
Summary sheet for multiple worksheets JohnnieBoy Excel Programming 1 October 30th 06 05:19 PM
Summary worksheet referencing multiple worksheets Jon Excel Worksheet Functions 1 January 27th 05 01:12 AM


All times are GMT +1. The time now is 03:16 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"