Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 40
Default Formula using worksheet names 2

My original question dates from 31st July, and was helpfully answered.
Unfortunately I am now stuck on a similar problem, which I thought would be
easier. I now have sheets called Person a, Person b, . . . with figures I
want to pull through to a summary sheet. This time I have a table with Person
a, Person b, . . . in a column, so I just want to say ='sheet(A3)' cell(B10)
where A3 is 'Person a' and B10 is the cell figure I want to pull through. I'm
getting tangled up with inverted commas. Please help!

"E" wrote:

I have several sheets, called say Code 1, Code 2 . . . Code 10, each with a
table culminating in a total budget figure, which is in the same cell on each
sheet, say B24. On a separate sheet I have a table with one row per code, and
I want to show each code's budget figure next to the code numer, ie, Code 1:
£10000, Code 2: £5444 etc.
A way to do this is for each code to say ='Code x'!B24, where x is the code
number. This involves me typing this in or clicking to link for each code,
which is tedious for up to 100 codes. I want to write a formula on the lines
of ='Code "A5"'!B24 where A5 is the code number, ie, "look at cell B24 in the
sheet denoted by the code on this row".
I'm sorry, this isn't very easy to explain.


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,358
Default Formula using worksheet names 2

On your summary sheet, assuming A2 through whatever is Person A, Person B, etc.
B2: =INDIRECT("'"&A2&"'!B10")
inside the parentheses, enter as follows
"
'
"
&
A2
"
'
!
B10
"

Hope this helps.
--
John C


"E" wrote:

My original question dates from 31st July, and was helpfully answered.
Unfortunately I am now stuck on a similar problem, which I thought would be
easier. I now have sheets called Person a, Person b, . . . with figures I
want to pull through to a summary sheet. This time I have a table with Person
a, Person b, . . . in a column, so I just want to say ='sheet(A3)' cell(B10)
where A3 is 'Person a' and B10 is the cell figure I want to pull through. I'm
getting tangled up with inverted commas. Please help!

"E" wrote:

I have several sheets, called say Code 1, Code 2 . . . Code 10, each with a
table culminating in a total budget figure, which is in the same cell on each
sheet, say B24. On a separate sheet I have a table with one row per code, and
I want to show each code's budget figure next to the code numer, ie, Code 1:
£10000, Code 2: £5444 etc.
A way to do this is for each code to say ='Code x'!B24, where x is the code
number. This involves me typing this in or clicking to link for each code,
which is tedious for up to 100 codes. I want to write a formula on the lines
of ='Code "A5"'!B24 where A5 is the code number, ie, "look at cell B24 in the
sheet denoted by the code on this row".
I'm sorry, this isn't very easy to explain.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 40
Default Formula using worksheet names 2

Fab, thank you. Another question, though - I want to copy the formula down so
that from the sheet it gives B10, B11, . . . Normally copying down would do
this automatically, but using INDIRECT I get B10, B10, . . . etc.

"John C" wrote:

On your summary sheet, assuming A2 through whatever is Person A, Person B, etc.
B2: =INDIRECT("'"&A2&"'!B10")
inside the parentheses, enter as follows
"
'
"
&
A2
"
'
!
B10
"

Hope this helps.
--
John C


"E" wrote:

My original question dates from 31st July, and was helpfully answered.
Unfortunately I am now stuck on a similar problem, which I thought would be
easier. I now have sheets called Person a, Person b, . . . with figures I
want to pull through to a summary sheet. This time I have a table with Person
a, Person b, . . . in a column, so I just want to say ='sheet(A3)' cell(B10)
where A3 is 'Person a' and B10 is the cell figure I want to pull through. I'm
getting tangled up with inverted commas. Please help!

"E" wrote:

I have several sheets, called say Code 1, Code 2 . . . Code 10, each with a
table culminating in a total budget figure, which is in the same cell on each
sheet, say B24. On a separate sheet I have a table with one row per code, and
I want to show each code's budget figure next to the code numer, ie, Code 1:
£10000, Code 2: £5444 etc.
A way to do this is for each code to say ='Code x'!B24, where x is the code
number. This involves me typing this in or clicking to link for each code,
which is tedious for up to 100 codes. I want to write a formula on the lines
of ='Code "A5"'!B24 where A5 is the code number, ie, "look at cell B24 in the
sheet denoted by the code on this row".
I'm sorry, this isn't very easy to explain.


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Formula using worksheet names 2

That's because the B10 is within quotes, so is treated as text. You
can put it outside the quotes like this:

=INDIRECT("'"&A2&"'!B"&ROW(A10))

Hope this helps.

Pete

On Aug 5, 3:24*pm, E wrote:
Fab, thank you. Another question, though - I want to copy the formula down so
that from the sheet it gives B10, B11, *. . . Normally copying down would do
this automatically, but using INDIRECT I get B10, B10, . . . etc.



"John C" wrote:
On your summary sheet, assuming A2 through whatever is Person A, Person B, etc.
B2: =INDIRECT("'"&A2&"'!B10")
inside the parentheses, enter as follows
"
'
"
&
A2
"
'
!
B10
"


Hope this helps.
--
John C


"E" wrote:


My original question dates from 31st July, and was helpfully answered..
Unfortunately I am now stuck on a similar problem, which I thought would be
easier. I now have sheets called Person a, Person b, . . . with figures I
want to pull through to a summary sheet. This time I have a table with Person
a, Person b, . . . in a column, so I just want to say ='sheet(A3)' cell(B10)
where A3 is 'Person a' and B10 is the cell figure I want to pull through. I'm
getting tangled up with inverted commas. Please help!


"E" wrote:


I have several sheets, called say Code 1, Code 2 . . . Code 10, each with a
table culminating in a total budget figure, which is in the same cell on each
sheet, say B24. On a separate sheet I have a table with one row per code, and
I want to show each code's budget figure next to the code numer, ie, Code 1:
£10000, Code 2: £5444 etc.
A way to do this is for each code to say ='Code x'!B24, where x is the code
number. This involves me typing this in or clicking to link for each code,
which is tedious for up to 100 codes. I want to write a formula on the lines
of ='Code "A5"'!B24 where A5 is the code number, ie, "look at cell B24 in the
sheet denoted by the code on this row".
I'm sorry, this isn't very easy to explain.- Hide quoted text -


- Show quoted text -


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 40
Default Formula using worksheet names 2

Thank you, that works really well.

"Pete_UK" wrote:

That's because the B10 is within quotes, so is treated as text. You
can put it outside the quotes like this:

=INDIRECT("'"&A2&"'!B"&ROW(A10))

Hope this helps.

Pete

On Aug 5, 3:24 pm, E wrote:
Fab, thank you. Another question, though - I want to copy the formula down so
that from the sheet it gives B10, B11, . . . Normally copying down would do
this automatically, but using INDIRECT I get B10, B10, . . . etc.



"John C" wrote:
On your summary sheet, assuming A2 through whatever is Person A, Person B, etc.
B2: =INDIRECT("'"&A2&"'!B10")
inside the parentheses, enter as follows
"
'
"
&
A2
"
'
!
B10
"


Hope this helps.
--
John C


"E" wrote:


My original question dates from 31st July, and was helpfully answered..
Unfortunately I am now stuck on a similar problem, which I thought would be
easier. I now have sheets called Person a, Person b, . . . with figures I
want to pull through to a summary sheet. This time I have a table with Person
a, Person b, . . . in a column, so I just want to say ='sheet(A3)' cell(B10)
where A3 is 'Person a' and B10 is the cell figure I want to pull through. I'm
getting tangled up with inverted commas. Please help!


"E" wrote:


I have several sheets, called say Code 1, Code 2 . . . Code 10, each with a
table culminating in a total budget figure, which is in the same cell on each
sheet, say B24. On a separate sheet I have a table with one row per code, and
I want to show each code's budget figure next to the code numer, ie, Code 1:
£10000, Code 2: £5444 etc.
A way to do this is for each code to say ='Code x'!B24, where x is the code
number. This involves me typing this in or clicking to link for each code,
which is tedious for up to 100 codes. I want to write a formula on the lines
of ='Code "A5"'!B24 where A5 is the code number, ie, "look at cell B24 in the
sheet denoted by the code on this row".
I'm sorry, this isn't very easy to explain.- Hide quoted text -


- Show quoted text -





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Formula using worksheet names 2

You're welcome - thanks for feeding back.

Pete

On Aug 5, 3:42*pm, E wrote:
Thank you, that works really well.

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
Formula using worksheet names E[_2_] Excel Worksheet Functions 8 August 5th 08 02:54 PM
COPYING FORMULA CONTAINING NAMES/RELATIVE RANGE NAMES Bricol Excel Discussion (Misc queries) 0 July 8th 08 03:54 PM
Trying to list tab/worksheet names in a summary worksheet Mich Excel Discussion (Misc queries) 1 February 7th 08 02:07 AM
help keeping the worksheet names within formula lamaloh Excel Worksheet Functions 1 August 9th 05 09:32 AM
How to link Excel worksheet tab names to dates in each worksheet? Pat Excel Worksheet Functions 9 January 31st 05 07:51 AM


All times are GMT +1. The time now is 09:05 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"