Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a workbook with 22 worksheets. Each sheet is named for an
author, say `Able' through ... `Yangtze.' One the front sheet, I have the list of authors in a column. How do I write the MAX, AVERAGE, and MEDIAN commands so that I do not have to rewrite the names of the worksheets in each cell, ie: =AVERAGE(`THE NAME IN COLUMN A!$B$2:$B$1000) thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Use the INDIRECT() function.
Look in HELP for details or use the function wizard. -- Kind regards, Niek Otten "LarryLev" wrote in message oups.com... I have a workbook with 22 worksheets. Each sheet is named for an author, say `Able' through ... `Yangtze.' One the front sheet, I have the list of authors in a column. How do I write the MAX, AVERAGE, and MEDIAN commands so that I do not have to rewrite the names of the worksheets in each cell, ie: =AVERAGE(`THE NAME IN COLUMN A!$B$2:$B$1000) thanks in advance. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try:
=AVERAGE(INDIRECT(A1&"!B2:B1000")) where the sheet name is in cell A1 Hope this helps Rowan LarryLev wrote: I have a workbook with 22 worksheets. Each sheet is named for an author, say `Able' through ... `Yangtze.' One the front sheet, I have the list of authors in a column. How do I write the MAX, AVERAGE, and MEDIAN commands so that I do not have to rewrite the names of the worksheets in each cell, ie: =AVERAGE(`THE NAME IN COLUMN A!$B$2:$B$1000) thanks in advance. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=AVERAGE(INDIRECT(A11 &"!D3:D5"))
Of course, adjust the range... =AVERAGE(INDIRECT(A11 & "!$B$2:$B$1000")) "LarryLev" wrote: I have a workbook with 22 worksheets. Each sheet is named for an author, say `Able' through ... `Yangtze.' One the front sheet, I have the list of authors in a column. How do I write the MAX, AVERAGE, and MEDIAN commands so that I do not have to rewrite the names of the worksheets in each cell, ie: =AVERAGE(`THE NAME IN COLUMN A!$B$2:$B$1000) thanks in advance. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks all. perfect
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
USe Contents of cell as name of worksheet in a function | Excel Worksheet Functions | |||
Trying to get contents of cell linked through IF function. | Excel Worksheet Functions | |||
function to display contents of a cell | Excel Worksheet Functions | |||
Function: cell contents formula or value? | Excel Worksheet Functions | |||
Contents of adjacent cell from a function | Excel Worksheet Functions |