Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
JS JS is offline
external usenet poster
 
Posts: 44
Default Linking to Summary Tab

I have a summary tab that is lad out as follows:
Column A Column B
1101
1102
1103

I have individual tabs named 1101, 1102, 1103, etc... This is one field in
each tab (same cell reference D20) that I want to link in the summary. I
know I can click on each tab and do a simple link =+'1001'!D20 - but wanted
another way - more effecient way using a formula in the summary tab- a look
up of sorts. Any ideas??
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default Linking to Summary Tab

You can use indirect

=INDIRECT(A1&"!$D$20")

And copy down


--

Regards Ron de Bruin
http://www.rondebruin.nl



"JS" wrote in message
...
I have a summary tab that is lad out as follows:
Column A Column B
1101
1102
1103

I have individual tabs named 1101, 1102, 1103, etc... This is one field in
each tab (same cell reference D20) that I want to link in the summary. I
know I can click on each tab and do a simple link =+'1001'!D20 - but
wanted
another way - more effecient way using a formula in the summary tab- a
look
up of sorts. Any ideas??


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Linking to Summary Tab

Ron will want you to use:

=indirect("'" & a1 & "'!$d$20")
or
=indirect("'" & a1 & "'!d20")

(the $ signs aren't important when they're in =indirect(), but the apostrophes
will be important.)

Ron de Bruin wrote:

You can use indirect

=INDIRECT(A1&"!$D$20")

And copy down

--

Regards Ron de Bruin
http://www.rondebruin.nl

"JS" wrote in message
...
I have a summary tab that is lad out as follows:
Column A Column B
1101
1102
1103

I have individual tabs named 1101, 1102, 1103, etc... This is one field in
each tab (same cell reference D20) that I want to link in the summary. I
know I can click on each tab and do a simple link =+'1001'!D20 - but
wanted
another way - more effecient way using a formula in the summary tab- a
look
up of sorts. Any ideas??


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default Linking to Summary Tab

Thanks for the correction Dave

Never use a sheet name with a space in it <g

--

Regards Ron de Bruin
http://www.rondebruin.nl



"Dave Peterson" wrote in message
...
Ron will want you to use:

=indirect("'" & a1 & "'!$d$20")
or
=indirect("'" & a1 & "'!d20")

(the $ signs aren't important when they're in =indirect(), but the
apostrophes
will be important.)

Ron de Bruin wrote:

You can use indirect

=INDIRECT(A1&"!$D$20")

And copy down

--

Regards Ron de Bruin
http://www.rondebruin.nl

"JS" wrote in message
...
I have a summary tab that is lad out as follows:
Column A Column B
1101
1102
1103

I have individual tabs named 1101, 1102, 1103, etc... This is one field
in
each tab (same cell reference D20) that I want to link in the summary.
I
know I can click on each tab and do a simple link =+'1001'!D20 - but
wanted
another way - more effecient way using a formula in the summary tab- a
look
up of sorts. Any ideas??


--

Dave Peterson


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Linking to Summary Tab

Or all numbers <bg.

Ron de Bruin wrote:

Thanks for the correction Dave

Never use a sheet name with a space in it <g

--

Regards Ron de Bruin
http://www.rondebruin.nl

"Dave Peterson" wrote in message
...
Ron will want you to use:

=indirect("'" & a1 & "'!$d$20")
or
=indirect("'" & a1 & "'!d20")

(the $ signs aren't important when they're in =indirect(), but the
apostrophes
will be important.)

Ron de Bruin wrote:

You can use indirect

=INDIRECT(A1&"!$D$20")

And copy down

--

Regards Ron de Bruin
http://www.rondebruin.nl

"JS" wrote in message
...
I have a summary tab that is lad out as follows:
Column A Column B
1101
1102
1103

I have individual tabs named 1101, 1102, 1103, etc... This is one field
in
each tab (same cell reference D20) that I want to link in the summary.
I
know I can click on each tab and do a simple link =+'1001'!D20 - but
wanted
another way - more effecient way using a formula in the summary tab- a
look
up of sorts. Any ideas??


--

Dave Peterson


--

Dave Peterson


  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default Linking to Summary Tab

Yes, I love this macro to do it for me
http://www.rondebruin.nl/summary.htm

All those'''''''''''''''''''''''''''''''''''''''' confuse me



--

Regards Ron de Bruin
http://www.rondebruin.nl



"Dave Peterson" wrote in message
...
Or all numbers <bg.

Ron de Bruin wrote:

Thanks for the correction Dave

Never use a sheet name with a space in it <g

--

Regards Ron de Bruin
http://www.rondebruin.nl

"Dave Peterson" wrote in message
...
Ron will want you to use:

=indirect("'" & a1 & "'!$d$20")
or
=indirect("'" & a1 & "'!d20")

(the $ signs aren't important when they're in =indirect(), but the
apostrophes
will be important.)

Ron de Bruin wrote:

You can use indirect

=INDIRECT(A1&"!$D$20")

And copy down

--

Regards Ron de Bruin
http://www.rondebruin.nl

"JS" wrote in message
...
I have a summary tab that is lad out as follows:
Column A Column B
1101
1102
1103

I have individual tabs named 1101, 1102, 1103, etc... This is one
field
in
each tab (same cell reference D20) that I want to link in the
summary.
I
know I can click on each tab and do a simple link =+'1001'!D20 -
but
wanted
another way - more effecient way using a formula in the summary tab-
a
look
up of sorts. Any ideas??

--

Dave Peterson


--

Dave Peterson


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
Conditional Linking and Formatting across worksheets to form Summary Page - Only pull/link non-null fields J Leckner Excel Worksheet Functions 1 September 22nd 06 04:18 PM
Need to Improve Code Copying/Pasting Between Workbooks David Excel Discussion (Misc queries) 1 January 6th 06 03:56 AM
Linking References from Multiple Sheets to One Summary Sheet Kim Setting up and Configuration of Excel 3 May 5th 05 04:56 PM
Linking sheets to a summary sheet in workbook gambinijr Excel Discussion (Misc queries) 4 December 16th 04 08:13 PM
linking multiple sheets to a summary sheet greg g Excel Discussion (Misc queries) 1 December 16th 04 07:43 AM


All times are GMT +1. The time now is 06:48 PM.

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"