Hi,
A workbook has 13 sheets, a sheet each for the months from Apr-10 to
Mar-11 and final summary sheet
In the Summary sheet, I have a validation list in cell A1 where the
names of one of the sheets is selected by the user. eg, May-10
I want a formula to retrieve the value of a cell from that sheet (ie
May-10), eg Cell R4. The formula should have a relative address of the
source cell, so that when copied down, other cells from the source
sheet should be displayed.
Currently, I am using the following formula:
=INDIRECT("'"&$A$1&"'!"&ADDRESS(ROW(R4),COLUMN(R4),1))
The formula works fine, except that the R4 refers to R4 in the Summary
sheet and not the month displayed in cell A1. Hence, any rows inserted/
deleted in the Summary sheet results in the REF error. Is there an
easy/another way to refer to cell R4 of the sheet whose name is
displayed in cell A1 of the current sheet?
Thanks in Advance for the help.
Regards,
Raj
|
|
0
|
|
|
|
Reply
|
Raj
|
4/25/2010 11:37:10 AM |
|
Hi,
Try this
=INDIRECT("'"&$A$1&"'!R4")
--
Regards,
Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com
"Raj" <rspai9@gmail.com> wrote in message
news:094ca5aa-0492-4a7f-b461-65044b43de8d@y38g2000prb.googlegroups.com...
> Hi,
>
> A workbook has 13 sheets, a sheet each for the months from Apr-10 to
> Mar-11 and final summary sheet
>
> In the Summary sheet, I have a validation list in cell A1 where the
> names of one of the sheets is selected by the user. eg, May-10
>
> I want a formula to retrieve the value of a cell from that sheet (ie
> May-10), eg Cell R4. The formula should have a relative address of the
> source cell, so that when copied down, other cells from the source
> sheet should be displayed.
>
> Currently, I am using the following formula:
> =INDIRECT("'"&$A$1&"'!"&ADDRESS(ROW(R4),COLUMN(R4),1))
>
> The formula works fine, except that the R4 refers to R4 in the Summary
> sheet and not the month displayed in cell A1. Hence, any rows inserted/
> deleted in the Summary sheet results in the REF error. Is there an
> easy/another way to refer to cell R4 of the sheet whose name is
> displayed in cell A1 of the current sheet?
>
> Thanks in Advance for the help.
>
> Regards,
> Raj
>
|
|
0
|
|
|
|
Reply
|
Ashish
|
4/25/2010 12:10:54 PM
|
|
I had tried this earlier. But when I copy the formula down the column,
the R4 does not become relative. eg. If the formula is in cell B3,
and is referencing R4, then I want the formula to reference R5 in
cell B4. But it references R4 only. How do I make the "R4" relative?
Thanks and Regards,
Rajendra
On Apr 25, 5:10=A0pm, "Ashish Mathur" <mathurash...@hotmail.com> wrote:
> Hi,
>
> Try this
>
> =3DINDIRECT("'"&$A$1&"'!R4")
>
> --
> Regards,
>
> Ashish Mathur
> Microsoft Excel MVPwww.ashishmathur.com
>
> "Raj" <rsp...@gmail.com> wrote in message
>
> news:094ca5aa-0492-4a7f-b461-65044b43de8d@y38g2000prb.googlegroups.com...
>
> > Hi,
>
> > A workbook has 13 sheets, a sheet each for the months from Apr-10 to
> > Mar-11 =A0and =A0final summary sheet
>
> > In the Summary sheet, I have a validation list in cell A1 where the
> > names of one of the sheets is selected by the user. eg, May-10
>
> > I want a formula to retrieve the value of a cell from that sheet (ie
> > May-10), eg Cell R4. The formula should have a relative address of the
> > source cell, so that when copied down, other cells from the source
> > sheet should be displayed.
>
> > Currently, I am using the following formula:
> > =3DINDIRECT("'"&$A$1&"'!"&ADDRESS(ROW(R4),COLUMN(R4),1))
>
> > The formula works fine, except that the R4 refers to R4 in the Summary
> > sheet and not the month displayed in cell A1. Hence, any rows inserted/
> > deleted in the Summary sheet results in the REF error. Is there an
> > easy/another way to refer to cell R4 of the sheet whose name is
> > displayed in cell A1 of the current sheet?
>
> > Thanks in Advance for the help.
>
> > Regards,
> > Raj
|
|
0
|
|
|
|
Reply
|
Raj
|
4/25/2010 2:39:12 PM
|
|
Hi
Try
=INDIRECT("'"&$A$1&"'!R"&ROWS($1:4))
--
Regards
Roger Govier
Raj wrote:
> I had tried this earlier. But when I copy the formula down the column,
> the R4 does not become relative. eg. If the formula is in cell B3,
> and is referencing R4, then I want the formula to reference R5 in
> cell B4. But it references R4 only. How do I make the "R4" relative?
>
> Thanks and Regards,
> Rajendra
>
>
> On Apr 25, 5:10 pm, "Ashish Mathur" <mathurash...@hotmail.com> wrote:
>> Hi,
>>
>> Try this
>>
>> =INDIRECT("'"&$A$1&"'!R4")
>>
>> --
>> Regards,
>>
>> Ashish Mathur
>> Microsoft Excel MVPwww.ashishmathur.com
>>
>> "Raj" <rsp...@gmail.com> wrote in message
>>
>> news:094ca5aa-0492-4a7f-b461-65044b43de8d@y38g2000prb.googlegroups.com...
>>
>>> Hi,
>>> A workbook has 13 sheets, a sheet each for the months from Apr-10 to
>>> Mar-11 and final summary sheet
>>> In the Summary sheet, I have a validation list in cell A1 where the
>>> names of one of the sheets is selected by the user. eg, May-10
>>> I want a formula to retrieve the value of a cell from that sheet (ie
>>> May-10), eg Cell R4. The formula should have a relative address of the
>>> source cell, so that when copied down, other cells from the source
>>> sheet should be displayed.
>>> Currently, I am using the following formula:
>>> =INDIRECT("'"&$A$1&"'!"&ADDRESS(ROW(R4),COLUMN(R4),1))
>>> The formula works fine, except that the R4 refers to R4 in the Summary
>>> sheet and not the month displayed in cell A1. Hence, any rows inserted/
>>> deleted in the Summary sheet results in the REF error. Is there an
>>> easy/another way to refer to cell R4 of the sheet whose name is
>>> displayed in cell A1 of the current sheet?
>>> Thanks in Advance for the help.
>>> Regards,
>>> Raj
>
|
|
0
|
|
|
|
Reply
|
Roger
|
4/25/2010 3:59:07 PM
|
|
Thanks a ton, Roger. It works exactly as it should.
Regards,
Rajendra
On Apr 25, 8:59=A0pm, Roger Govier <ro...@technology4nospamu.co.uk>
wrote:
> Hi
>
> Try
> =3DINDIRECT("'"&$A$1&"'!R"&ROWS($1:4))
> --
> Regards
> Roger Govier
>
> Raj wrote:
> > I had tried this earlier. But when I copy the formula down the column,
> > the R4 does not become relative. eg. If the formula is =A0in cell B3,
> > and is referencing R4, =A0then I want the formula to reference R5 in
> > cell B4. But it references R4 only. How do I make the "R4" relative?
>
> > Thanks and Regards,
> > Rajendra
>
> > On Apr 25, 5:10 pm, "Ashish Mathur" <mathurash...@hotmail.com> wrote:
> >> Hi,
>
> >> Try this
>
> >> =3DINDIRECT("'"&$A$1&"'!R4")
>
> >> --
> >> Regards,
>
> >> Ashish Mathur
> >> Microsoft Excel MVPwww.ashishmathur.com
>
> >> "Raj" <rsp...@gmail.com> wrote in message
>
> >>news:094ca5aa-0492-4a7f-b461-65044b43de8d@y38g2000prb.googlegroups.com.=
...
>
> >>> Hi,
> >>> A workbook has 13 sheets, a sheet each for the months from Apr-10 to
> >>> Mar-11 =A0and =A0final summary sheet
> >>> In the Summary sheet, I have a validation list in cell A1 where the
> >>> names of one of the sheets is selected by the user. eg, May-10
> >>> I want a formula to retrieve the value of a cell from that sheet (ie
> >>> May-10), eg Cell R4. The formula should have a relative address of th=
e
> >>> source cell, so that when copied down, other cells from the source
> >>> sheet should be displayed.
> >>> Currently, I am using the following formula:
> >>> =3DINDIRECT("'"&$A$1&"'!"&ADDRESS(ROW(R4),COLUMN(R4),1))
> >>> The formula works fine, except that the R4 refers to R4 in the Summar=
y
> >>> sheet and not the month displayed in cell A1. Hence, any rows inserte=
d/
> >>> deleted in the Summary sheet results in the REF error. Is there an
> >>> easy/another way to refer to cell R4 of the sheet whose name is
> >>> displayed in cell A1 of the current sheet?
> >>> Thanks in Advance for the help.
> >>> Regards,
> >>> Raj
|
|
0
|
|
|
|
Reply
|
Raj
|
4/26/2010 12:37:43 AM
|
|
|
4 Replies
197 Views
(page loaded in 0.156 seconds)
Similiar Articles: Using names referencing a cell in another workbook - microsoft ...Advantages and Disadvantages of Referencing An Add-In Workbook ... formula referencing ... using indirect to return a named range? - microsoft.public.excel ... Using names ... formula range doesn't update for new rows - microsoft.public ...Some sheets contain imported data and some contain sumproduct formulas referencing the ... Think you can use INDIRECT to always point to fixed ranges Eg: =SUMPRODUCT ... Link to another workbook & indirect - microsoft.public.excel ...That number is always in A1, by way of a formula. ... Using names referencing a cell in another workbook - microsoft ... ... to Link to Another Works | eHow.com How to Use Indirect ... Sum(indirect(Address..... - microsoft.public.excel.worksheet ...This is a snippet of the formula that i am using =SUM(INDIRECT(ADDRESS(ROW(),MATCH ... Re: INDIRECT and Named Ranges referencing closed workbook ... From Multiple Sheets ... Incrementing Formula by Column Instead of by Row - microsoft ...In one worksheet I have the formula: =SUM(Data!B5:B78) referencing data in a column on another ... everywhere and I can't find an answer. One way: =SUM(INDIRECT("Data ... How to fix Compatibility error - microsoft.public.excel.misc ...... list is a dependent list with the following validation formula: =OFFSET(INDIRECT ... formula on the formatted worksheet > that says that formulas are referencing ... SUMIF and INDIRECT reference to tab in other workbook - microsoft ...using indirect to return a named range? - microsoft ... Re: INDIRECT and Named Ranges referencing closed ... here to help with laying out the formula ... SUMIF and INDIRECT ... How do I define a range by using cells as coordinates? - microsoft ...... B5')) <br> in order to have r referencing ... have you looked at the Indirect function? what about array formulas? ... using indirect to return a named range ... Can I use 'names' in defining a series in a graph ...... of cells and than have used them in formulas. However, when I try to use ... is using just the name, without referencing ... Using INDIRECT in named range for chart data ... Resolve a text cell reference to the cell's value - microsoft ...Use the INDIRECT() function. If A1 contains ... value ... from both cells ... referencing ... Definition: Related Tutorial: Using Cell References in Excel Formulas. INDIRECT FunctionThen, you can use the formula =SUM(INDIRECT("A"&B1&":A"&C1)) The argument to the ... rows or columns, even when you use absolute referencing. If you have the formula =SUM ... How to Use the INDIRECT Function to Create ReferencesThe formula in Example 1 could alternately be written using multiple INDIRECT statements ... In the INDIRECT function, referencing cells without using quotation ... How to use the INDIRECT function to create references in ExcelYou can use the INDIRECT worksheet function to ... B1 contains the word "TEST," the formula =INDIRECT(A1) returns the result "TEST." However, referencing a ... Excel - Indirect Worksheet Function Referencing Another Worksheet ...I'm new to using the Indirect function within Formula, and I am currently having the ... to use indirect and emulate the absolute referencing as in C2:D3. By using indirect ... Spreadsheet Page Excel Tips: Referencing A Sheet IndirectlyReferencing A Sheet Indirectly. Category: Formulas | Q. My Excel workbook has a ... sheet, and then have my formulas use the data for the specified sheet? Yes. Excel's INDIRECT ... 7/30/2012 4:44:02 AM
|