Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Is there a way to automatically populate a cell with the Worksheet tab name? Thanks -- jimbob ------------------------------------------------------------------------ jimbob's Profile: http://www.excelforum.com/member.php...o&userid=29107 View this thread: http://www.excelforum.com/showthread...hreadid=488412 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
jimbob, try this,
=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255) file must be saved first You may also want to have a look here http://www.xldynamic.com/source/xld.xlFAQ0002.html -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "jimbob" wrote in message ... Is there a way to automatically populate a cell with the Worksheet tab name? Thanks -- jimbob ------------------------------------------------------------------------ jimbob's Profile: http://www.excelforum.com/member.php...o&userid=29107 View this thread: http://www.excelforum.com/showthread...hreadid=488412 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Thanks Paul. That works great. Just one question. What is the "+1,255" at the end of the formula for? -- jimbob ------------------------------------------------------------------------ jimbob's Profile: http://www.excelforum.com/member.php...o&userid=29107 View this thread: http://www.excelforum.com/showthread...hreadid=488412 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The +1 means you start one character *after* the right bracket.
The 255 is just a large number of characters to include. 32 would be sufficient. I've always used 255 just because it's the largest integer that will fit in one byte (2^8 - 1). Such conventions were more common back when people actually coded applications in assembly language. In article , jimbob wrote: Thanks Paul. That works great. Just one question. What is the "+1,255" at the end of the formula for? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to use a cell value to reference a worksheet name | Excel Worksheet Functions | |||
HELP: How to Repeat Cell Content into a Second Worksheet ? | Excel Worksheet Functions | |||
getting multiple data to populate another worksheet | Excel Worksheet Functions | |||
Using a cell reference to refernce worksheet in another work book | Excel Worksheet Functions | |||
How to populate column with formula based on value in cell | Excel Worksheet Functions |