Copying a Formula To Reference Multiple Worksheets

G

Guest

I am trying to build a table like this :

A B
5-Jul 7.33%
6-Jul
7-Jul
8-Jul
9-Jul

Where the value 7.33% is from this formula:

='Jul 5'!C8

The worksheets in this workbook are named 5-Jul, 6-Jul etc.

I would like to use a formula that will look at the text in Col A (eg
5-Jul), and pull the value in cell c8 of the appropriate worksheet.

Is it possible ?

Thank you in advance.
 
D

Dave Peterson

How about something like:
=INDIRECT("'" & A1 &"'!c8")

or if column A are real dates:
=INDIRECT("'" & text(A1,"d-mmm") &"'!c8")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top