Worksheet name

  • Thread starter Thread starter Luc
  • Start date Start date
L

Luc

Hi all,

I know that you can put the name of the worksheet by putting &[tab] in the
header, but is it possible to put the worksheet name in cell A1 of every
worksheet? i've tried simply copying &[tab] and variants thereof, but no
luck.

Thks for any help!

Luc
 
Hi Luc
try one of the following formulas (note: the workbook has to be save
before)
File path and file name:
=CELL("filename",A1)

File path only
=LEFT(CELL("filename",A1),FIND("[",CELL("filename",A1),1)-1)

File name only
=MID(CELL("filename",A1),FIND("[",CELL("filename",A1),1)+1,FIND("]",CEL
L("filename",A1),1)-FIND("[",CELL("filename",A1),1)-1)

The sheet name
=RIGHT(CELL("filename",A1),LEN(CELL("filename",A1))-FIND("]",CELL("file
name",A1),1))
 
thks frank..

i've put in the following formula

=RIGHT(CELL("DB Tables.xls",A1),LEN(CELL("DB
Tables.xls",A1))-FIND("]",CELL("DB Tables.xls",A1),1))

but it comes back with !VALUE#

any ideas? the worksheet name is Company.

Luc


Frank Kabel said:
Hi Luc
try one of the following formulas (note: the workbook has to be save
before)
File path and file name:
=CELL("filename",A1)

File path only
=LEFT(CELL("filename",A1),FIND("[",CELL("filename",A1),1)-1)

File name only
=MID(CELL("filename",A1),FIND("[",CELL("filename",A1),1)+1,FIND("]",CEL
L("filename",A1),1)-FIND("[",CELL("filename",A1),1)-1)

The sheet name
=RIGHT(CELL("filename",A1),LEN(CELL("filename",A1))-FIND("]",CELL("file
name",A1),1))


--
Regards
Frank Kabel
Frankfurt, Germany

Hi all,

I know that you can put the name of the worksheet by putting &[tab]
in the header, but is it possible to put the worksheet name in cell
A1 of every worksheet? i've tried simply copying &[tab] and variants
thereof, but no luck.

Thks for any help!

Luc
 
Hi
just leave the word 'filename' in the formula. Do NOT replace it with
your actual filename. Just paste the formulas as I have posted them

--
Regards
Frank Kabel
Frankfurt, Germany

thks frank..

i've put in the following formula

=RIGHT(CELL("DB Tables.xls",A1),LEN(CELL("DB
Tables.xls",A1))-FIND("]",CELL("DB Tables.xls",A1),1))

but it comes back with !VALUE#

any ideas? the worksheet name is Company.

Luc


Frank Kabel said:
Hi Luc
try one of the following formulas (note: the workbook has to be save
before)
File path and file name:
=CELL("filename",A1)

File path only
=LEFT(CELL("filename",A1),FIND("[",CELL("filename",A1),1)-1)

File name only
=MID(CELL("filename",A1),FIND("[",CELL("filename",A1),1)+1,FIND("]",CEL
L("filename",A1),1)-FIND("[",CELL("filename",A1),1)-1)

The sheet name
=RIGHT(CELL("filename",A1),LEN(CELL("filename",A1))-FIND("]",CELL("file
name",A1),1))


--
Regards
Frank Kabel
Frankfurt, Germany

Hi all,

I know that you can put the name of the worksheet by putting &[tab]
in the header, but is it possible to put the worksheet name in cell
A1 of every worksheet? i've tried simply copying &[tab] and
variants thereof, but no luck.

Thks for any help!

Luc
 
excellent!

thanks a lot.

Luc


Frank Kabel said:
Hi
just leave the word 'filename' in the formula. Do NOT replace it with
your actual filename. Just paste the formulas as I have posted them

--
Regards
Frank Kabel
Frankfurt, Germany

thks frank..

i've put in the following formula

=RIGHT(CELL("DB Tables.xls",A1),LEN(CELL("DB
Tables.xls",A1))-FIND("]",CELL("DB Tables.xls",A1),1))

but it comes back with !VALUE#

any ideas? the worksheet name is Company.

Luc


Frank Kabel said:
Hi Luc
try one of the following formulas (note: the workbook has to be save
before)
File path and file name:
=CELL("filename",A1)

File path only
=LEFT(CELL("filename",A1),FIND("[",CELL("filename",A1),1)-1)

File name only
=MID(CELL("filename",A1),FIND("[",CELL("filename",A1),1)+1,FIND("]",CEL
L("filename",A1),1)-FIND("[",CELL("filename",A1),1)-1)

The sheet name
=RIGHT(CELL("filename",A1),LEN(CELL("filename",A1))-FIND("]",CELL("file
name",A1),1))


--
Regards
Frank Kabel
Frankfurt, Germany


Luc wrote:
Hi all,

I know that you can put the name of the worksheet by putting &[tab]
in the header, but is it possible to put the worksheet name in cell
A1 of every worksheet? i've tried simply copying &[tab] and
variants thereof, but no luck.

Thks for any help!

Luc
 
Back
Top