Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
noy noy is offline
external usenet poster
 
Posts: 8
Default multiple worksheets - getting data from same cell for a list

Hi - Could anyone assist please.

I have a workbook (just the one document) with around 60 pages of active
data in it - all pages have the same format. Just the data (scores in this
case) and page name (page1, page2 etc.) change.

I am trying to do a master list on the front page which pulls the data from
cell G192 from each page onto a master refrence list. Is there anyway to
bring the contents to the master list other than write in cell A1 =
Book1!G192 in cell A2 = Book2!G192 etc.,?

I can do this 60 times but there must be a simpler way. Anyone got any tips
please?


Ta


Andy
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default multiple worksheets - getting data from same cell for a list

Mention the sheet names in one column as shown below. In B1 enter this
formula. Drag the formula down

A1 = Book1
A2 = Book2

=INDIRECT(A1&"!" & "G192")

If this post helps click Yes
---------------
Jacob Skaria


"noy" wrote:

Hi - Could anyone assist please.

I have a workbook (just the one document) with around 60 pages of active
data in it - all pages have the same format. Just the data (scores in this
case) and page name (page1, page2 etc.) change.

I am trying to do a master list on the front page which pulls the data from
cell G192 from each page onto a master refrence list. Is there anyway to
bring the contents to the master list other than write in cell A1 =
Book1!G192 in cell A2 = Book2!G192 etc.,?

I can do this 60 times but there must be a simpler way. Anyone got any tips
please?


Ta


Andy

  #4   Report Post  
Posted to microsoft.public.excel.misc
noy noy is offline
external usenet poster
 
Posts: 8
Default multiple worksheets - getting data from same cell for a list

Gents


Thanks for the assistance, will have a go!


Cheers


Andy

"Don Guillett" wrote:

try
Sub getlistfromshts()
For i = 1 To Sheets.Count
If Sheets(i).Name < "Master" Then
Sheets("master").Cells(i, 1) = Sheets(i).Range("g192")
End If
Next i
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"noy" wrote in message
...
Hi - Could anyone assist please.

I have a workbook (just the one document) with around 60 pages of active
data in it - all pages have the same format. Just the data (scores in this
case) and page name (page1, page2 etc.) change.

I am trying to do a master list on the front page which pulls the data
from
cell G192 from each page onto a master refrence list. Is there anyway to
bring the contents to the master list other than write in cell A1 =
Book1!G192 in cell A2 = Book2!G192 etc.,?

I can do this 60 times but there must be a simpler way. Anyone got any
tips
please?


Ta


Andy



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 Simple List...Multiple Columns and Multiple Worksheets Jane Doe[_3_] Excel Worksheet Functions 6 July 14th 08 08:12 PM
Multiple Worksheets and Cell References - Data Output Natalie Excel Discussion (Misc queries) 1 June 7th 07 08:40 PM
Compile list of same cell from multiple worksheets PCakes Excel Worksheet Functions 7 August 17th 06 04:03 PM
list data of same cell on different worksheets. Titam Excel Worksheet Functions 9 December 9th 05 09:38 PM
Extracting data from multiple worksheets into a list mnirula Excel Worksheet Functions 16 February 25th 05 08:52 PM


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