Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can I display the name of a tab in a given cell?
|
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello sdmccabe,
Type the following formula: =RIGHT(CELL("filename",A1),LEN(CELL("filename",A1) )-FIND("]",CELL"filename",A1),1)) Exactly as is written but on 1 line Judith -- Hope this helps "sdmccabe" wrote: Can I display the name of a tab in a given cell? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for the formula. I tried to copy and paste into a cell and Excel
advised the formula contained an error, highlighting the the following portion: CELL("filename" Did I do something wrong? "JudithJubilee" wrote: Hello sdmccabe, Type the following formula: =RIGHT(CELL("filename",A1),LEN(CELL("filename",A1) )-FIND("]",CELL"filename",A1),1)) Exactly as is written but on 1 line Judith -- Hope this helps "sdmccabe" wrote: Can I display the name of a tab in a given cell? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Try this =MID(CELL("filename"), FIND("]",CELL("filename"))+1, LEN(CELL("filename"))-FIND("]", CELL("filename"))) -- intruder9 ------------------------------------------------------------------------ intruder9's Profile: http://www.excelforum.com/member.php...o&userid=30107 View this thread: http://www.excelforum.com/showthread...hreadid=525536 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
That won't work, do as follows
1. Enter the formula in a cell on Sheet1 2. enter the same formula in Sheet2 3. Go back to Sheet1, it now says Sheet2 you need to add a cell reference =MID(CELL("filename",A1), FIND("]",CELL("filename",A1))+1,LEN(CELL("filename".A 1))-FIND("]", CELL("filename",A1))) also this part LEN(CELL("filename"))-FIND("]", CELL("filename"))) is really obsolete, since a sheet name can only contain 31 characters you can use =MID(CELL("filename",A1), FIND("]",CELL("filename",A1))+1,31) -- Regards, Peo Sjoblom "intruder9" wrote in message ... Try this =MID(CELL("filename"), FIND("]",CELL("filename"))+1, LEN(CELL("filename"))-FIND("]", CELL("filename"))) -- intruder9 ------------------------------------------------------------------------ intruder9's Profile: http://www.excelforum.com/member.php...o&userid=30107 View this thread: http://www.excelforum.com/showthread...hreadid=525536 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Have 2 columns of names - need to filter out names not duplicated | Excel Worksheet Functions | |||
The filter didn't show all (2,254) names when I set it up | Excel Discussion (Misc queries) | |||
Convert Local Names to Global Names | Excel Worksheet Functions | |||
sorting names alphabetically when names may start with numbers | Excel Discussion (Misc queries) | |||
How can I find the common names in two columns of names? | Excel Discussion (Misc queries) |