Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a woorkbook and I like to put the names of one of the sheets into a
cell on one of the other sheets. EX Iin sheet 1 cell A1 I like to have the name of the 3th sheet in the workbook -- Palle korsholm |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=MID(CELL("filename",Sheet3!A1),FIND("]",CELL("filename",Sheet3!A1))+1,99)
I know this requires the name of the sheet, but if you change it, the formula picks up the change. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Palle korsholm" wrote in message ... I have a woorkbook and I like to put the names of one of the sheets into a cell on one of the other sheets. EX Iin sheet 1 cell A1 I like to have the name of the 3th sheet in the workbook -- Palle korsholm |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Here is a one-line UDF:
Function shname(i As Integer) As String shname = Sheets(i).Name End Function For example, =shname(2) will return the name of the 2nd sheet -- Gary''s Student - gsnu200768 "Palle korsholm" wrote: I have a woorkbook and I like to put the names of one of the sheets into a cell on one of the other sheets. EX Iin sheet 1 cell A1 I like to have the name of the 3th sheet in the workbook -- Palle korsholm |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy data of two cells from Sheet 2 into one cell in Sheet 1 | Excel Worksheet Functions | |||
Can I annotate a formula result in Sheet 1 in Sheet 2 by Cell Addr | Excel Worksheet Functions | |||
how to copy a cell with formula from sheet 1 (data is all vertical) into sheet 2 | Excel Worksheet Functions | |||
Excell:Move from any Cell Sheet 1 to any cell Sheet 2 etc. | Excel Worksheet Functions | |||
Lookup cell contents in on sheet based on a formula in second sheet | Excel Worksheet Functions |