#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 60
Default retrieving data

I have multiple worsheets that contain a form that is protected except for
the cells we want filled out. I have a master sheet in which I want to pull
certain information from each of the individual forms. For example, each
form has the specific company's name and this is one thing i want to be
automatically pulled from each individual form into the master sheet. Is
there a formula that will pull each individual company name into the master
sheet?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 751
Default retrieving data

I assume that you replicate the worksheets for each new company. Each
worksheet has a name. One solution:

You can compile all sheet names in a separate sheet (next to the
master list you want to compile). Say these are in cells A2:A100. Say
the cell with the company name in each sheet is F3. Next to A2:

=INDIRECT("'"&A2&"'!F3")

Copy down. To compile a list of the sheet names in A2:Ax of sheet
"Master"

Sub CompileSheetNameList()
dim sh as Worksheet
j = 2
For Each sh in ThisWorkbook.Worksheets
Sheets("Master").Cells(j,1).Value = sh.Name
j = j + 1
Next sh
End Sub

HTH
Kostis Vezerides



On Feb 13, 7:13 pm, Jess wrote:
I have multiple worsheets that contain a form that is protected except for
the cells we want filled out. I have a master sheet in which I want to pull
certain information from each of the individual forms. For example, each
form has the specific company's name and this is one thing i want to be
automatically pulled from each individual form into the master sheet. Is
there a formula that will pull each individual company name into the master
sheet?



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
QUERIES OR RETRIEVING DATA LostNFound Excel Discussion (Misc queries) 0 December 5th 06 07:13 AM
Retrieving SQL data into Excel Rob Setting up and Configuration of Excel 1 June 27th 06 11:18 PM
Retrieving data from the web - help ! glynny Excel Worksheet Functions 0 February 20th 06 02:04 AM
Retrieving data from a corresponding row from a different column fluci Excel Discussion (Misc queries) 3 October 27th 05 05:38 AM
Retrieving stock data Larry Wade Excel Discussion (Misc queries) 1 October 15th 05 06:43 PM


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