View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Luke M Luke M is offline
external usenet poster
 
Posts: 2,722
Default Pulling data from Sheets in A workbook

Yes, trying using the INDIRCT function. For instance, if you ahve a sheet
name "My Sheet", and cell A1 contains "My Sheet" This will return the value
of B2 from My Sheet

=INDIRECT("'" & A1 & "'!B2")
the spaces are just for clarity. Note that you can concatenate text and
cells together.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"MRSVATEK" wrote:

I have 100 sheets with the same layout that I want to summarize on a master
worksheet. The cell references are the same on all 100 sheets so it is easy
to link the data but I dont want to reference or change the sheet name to get
each line of data.
Can I name the sheet with a text string that is on my summary worksheet and
have a formula look for that sheet and pull the data in the referenced cells.