Thanks, I considered using a Vlookup formula but I don't think this is what I
require. The Vlookup seems more suited to looking up a specific piece of
data.
I was hoping to be able to change all of the formulas on the spread sheet
with cell references to a single line (the line containing data for a
specific business). Using the table below for example: The formula under
Revenue for Company A below looks like "='Sheet1'!c3". I am trying to
establish a formula that would look something like "'Sheet1'!c(a1)" so that I
can change the contents of a1 from 3 to 4 or 5, or 6, etc to change all the
formulas on my worksheet which refer to that particular line.
Is there a way to make the cell "line" reference the function of another
cell.
> Why don't you just use a lookup formula?
>
[quoted text clipped - 36 lines]
> > cell
> > reference into my formulas.
T. Valko - 11 Jul 2007 18:15 GMT
You can use something like this but it isn't very efficient:
A1 = 3
=INDIRECT("'Sheet1'!C"&A1)
Which evaluates to:
=Sheet1!C3

Signature
Biff
Microsoft Excel MVP
> Thanks, I considered using a Vlookup formula but I don't think this is
> what I
[quoted text clipped - 57 lines]
>> > cell
>> > reference into my formulas.
BarryL - 12 Jul 2007 07:30 GMT
Thanks that works perfectly (and I learned something today).
However, I also noted your comment on efficiency and went back again to
re-examine the vlookup option from a fresh vantage point. You are absolutely
right!
The alternative I planned would have resulted in a massive workbook with
multiple separate copied worksheets. I now have a single linked worksheet
that accomplishes everything I was attempting to do with far greater
efficiency.
Much appreciated.
> You can use something like this but it isn't very efficient:
>
[quoted text clipped - 67 lines]
> >> > cell
> >> > reference into my formulas.
T. Valko - 12 Jul 2007 18:29 GMT
You're welcome. Thanks for the feedback!

Signature
Biff
Microsoft Excel MVP
> Thanks that works perfectly (and I learned something today).
>
[quoted text clipped - 93 lines]
>> >> > cell
>> >> > reference into my formulas.