Closed Thread
Results 1 to 13 of 13

... I would like the Worksheet Tab Title to be in Cell A1 too...

  1. #1
    Dr. Darrell
    Guest

    ... I would like the Worksheet Tab Title to be in Cell A1 too...

    Is there a function that links the text on the Worksheet Tab to a Cell?

    Darrell

  2. #2
    Peo Sjoblom
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too...

    One way

    =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,32)


    --

    Regards,

    Peo Sjoblom

    "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    news:D0A70CB9-48BF-4BD6-BA17-3D10F8B1B3DB@microsoft.com...
    > Is there a function that links the text on the Worksheet Tab to a Cell?
    >
    > Darrell




  3. #3
    Dr. Darrell
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too.

    Peo:

    This seems to be a method to extract text from a string in a given cell. I
    don't think it will work with the TAB. (unless the Tab has an address similar
    to a cell's address.

    "Peo Sjoblom" wrote:

    > One way
    >
    > =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,32)
    >
    >
    > --
    >
    > Regards,
    >
    > Peo Sjoblom
    >
    > "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    > news:D0A70CB9-48BF-4BD6-BA17-3D10F8B1B3DB@microsoft.com...
    > > Is there a function that links the text on the Worksheet Tab to a Cell?
    > >
    > > Darrell

    >
    >
    >


  4. #4
    Peo Sjoblom
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too.

    Why don't you try it

    --

    Regards,

    Peo Sjoblom

    "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    news:C46AA431-DAA0-49BF-AF6C-009954440374@microsoft.com...
    > Peo:
    >
    > This seems to be a method to extract text from a string in a given cell. I
    > don't think it will work with the TAB. (unless the Tab has an address

    similar
    > to a cell's address.
    >
    > "Peo Sjoblom" wrote:
    >
    > > One way
    > >
    > > =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,32)
    > >
    > >
    > > --
    > >
    > > Regards,
    > >
    > > Peo Sjoblom
    > >
    > > "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    > > news:D0A70CB9-48BF-4BD6-BA17-3D10F8B1B3DB@microsoft.com...
    > > > Is there a function that links the text on the Worksheet Tab to a

    Cell?
    > > >
    > > > Darrell

    > >
    > >
    > >




  5. #5
    Dr. Darrell
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too.

    I entered my file name: =MID(CELL(Test,A1),FIND("]",CELL(Test,A1))+1,32)

    I entered my file name along with it's extension:
    =MID(CELL(Test.xls,A1),FIND("]",CELL(Test.xls,A1))+1,32)

    I entered my file name along with it's extension and it's path:
    =MID(CELL('C':\Documents and Settings\Darrell.Roak.PUMP_EXCH\My
    Documents\Test.xls,A1),FIND("]",CELL('C':\Documents and
    Settings\Darrell.Roak.PUMP_EXCH\My Documents\Test.xls,A1))+1,32)

    The result was the same: #NAME (formular result = volitile)

    My worksheet Tab name is "Test Tab"

    Am I supposed to substitute something for "]" ?



    "Peo Sjoblom" wrote:

    > Why don't you try it
    >
    > --
    >
    > Regards,
    >
    > Peo Sjoblom
    >
    > "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    > news:C46AA431-DAA0-49BF-AF6C-009954440374@microsoft.com...
    > > Peo:
    > >
    > > This seems to be a method to extract text from a string in a given cell. I
    > > don't think it will work with the TAB. (unless the Tab has an address

    > similar
    > > to a cell's address.
    > >
    > > "Peo Sjoblom" wrote:
    > >
    > > > One way
    > > >
    > > > =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,32)
    > > >
    > > >
    > > > --
    > > >
    > > > Regards,
    > > >
    > > > Peo Sjoblom
    > > >
    > > > "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    > > > news:D0A70CB9-48BF-4BD6-BA17-3D10F8B1B3DB@microsoft.com...
    > > > > Is there a function that links the text on the Worksheet Tab to a

    > Cell?
    > > > >
    > > > > Darrell
    > > >
    > > >
    > > >

    >
    >
    >


  6. #6
    Dave Peterson
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too.

    Don't make any changes with Peo's original formula. Just copy and paste
    directly to the formula bar for that cell.



    Dr. Darrell wrote:
    >
    > I entered my file name: =MID(CELL(Test,A1),FIND("]",CELL(Test,A1))+1,32)
    >
    > I entered my file name along with it's extension:
    > =MID(CELL(Test.xls,A1),FIND("]",CELL(Test.xls,A1))+1,32)
    >
    > I entered my file name along with it's extension and it's path:
    > =MID(CELL('C':\Documents and Settings\Darrell.Roak.PUMP_EXCH\My
    > Documents\Test.xls,A1),FIND("]",CELL('C':\Documents and
    > Settings\Darrell.Roak.PUMP_EXCH\My Documents\Test.xls,A1))+1,32)
    >
    > The result was the same: #NAME (formular result = volitile)
    >
    > My worksheet Tab name is "Test Tab"
    >
    > Am I supposed to substitute something for "]" ?
    >
    > "Peo Sjoblom" wrote:
    >
    > > Why don't you try it
    > >
    > > --
    > >
    > > Regards,
    > >
    > > Peo Sjoblom
    > >
    > > "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    > > news:C46AA431-DAA0-49BF-AF6C-009954440374@microsoft.com...
    > > > Peo:
    > > >
    > > > This seems to be a method to extract text from a string in a given cell. I
    > > > don't think it will work with the TAB. (unless the Tab has an address

    > > similar
    > > > to a cell's address.
    > > >
    > > > "Peo Sjoblom" wrote:
    > > >
    > > > > One way
    > > > >
    > > > > =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,32)
    > > > >
    > > > >
    > > > > --
    > > > >
    > > > > Regards,
    > > > >
    > > > > Peo Sjoblom
    > > > >
    > > > > "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    > > > > news:D0A70CB9-48BF-4BD6-BA17-3D10F8B1B3DB@microsoft.com...
    > > > > > Is there a function that links the text on the Worksheet Tab to a

    > > Cell?
    > > > > >
    > > > > > Darrell
    > > > >
    > > > >
    > > > >

    > >
    > >
    > >


    --

    Dave Peterson

  7. #7
    Dr. Darrell
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too.

    I copied and pasted the formular as typed by Peo and I got the same result:
    "#NAME"

    Darrell

    "Dave Peterson" wrote:

    > Don't make any changes with Peo's original formula. Just copy and paste
    > directly to the formula bar for that cell.
    >
    >
    >
    > Dr. Darrell wrote:
    > >
    > > I entered my file name: =MID(CELL(Test,A1),FIND("]",CELL(Test,A1))+1,32)
    > >
    > > I entered my file name along with it's extension:
    > > =MID(CELL(Test.xls,A1),FIND("]",CELL(Test.xls,A1))+1,32)
    > >
    > > I entered my file name along with it's extension and it's path:
    > > =MID(CELL('C':\Documents and Settings\Darrell.Roak.PUMP_EXCH\My
    > > Documents\Test.xls,A1),FIND("]",CELL('C':\Documents and
    > > Settings\Darrell.Roak.PUMP_EXCH\My Documents\Test.xls,A1))+1,32)
    > >
    > > The result was the same: #NAME (formular result = volitile)
    > >
    > > My worksheet Tab name is "Test Tab"
    > >
    > > Am I supposed to substitute something for "]" ?
    > >
    > > "Peo Sjoblom" wrote:
    > >
    > > > Why don't you try it
    > > >
    > > > --
    > > >
    > > > Regards,
    > > >
    > > > Peo Sjoblom
    > > >
    > > > "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    > > > news:C46AA431-DAA0-49BF-AF6C-009954440374@microsoft.com...
    > > > > Peo:
    > > > >
    > > > > This seems to be a method to extract text from a string in a given cell. I
    > > > > don't think it will work with the TAB. (unless the Tab has an address
    > > > similar
    > > > > to a cell's address.
    > > > >
    > > > > "Peo Sjoblom" wrote:
    > > > >
    > > > > > One way
    > > > > >
    > > > > > =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,32)
    > > > > >
    > > > > >
    > > > > > --
    > > > > >
    > > > > > Regards,
    > > > > >
    > > > > > Peo Sjoblom
    > > > > >
    > > > > > "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    > > > > > news:D0A70CB9-48BF-4BD6-BA17-3D10F8B1B3DB@microsoft.com...
    > > > > > > Is there a function that links the text on the Worksheet Tab to a
    > > > Cell?
    > > > > > >
    > > > > > > Darrell
    > > > > >
    > > > > >
    > > > > >
    > > >
    > > >
    > > >

    >
    > --
    >
    > Dave Peterson
    >


  8. #8
    Dave Peterson
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too.

    Did you use Peo's original formula?

    =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,32)

    I bet you changed it slightly.

    Dr. Darrell wrote:
    >
    > I copied and pasted the formular as typed by Peo and I got the same result:
    > "#NAME"
    >
    > Darrell
    >
    > "Dave Peterson" wrote:
    >
    > > Don't make any changes with Peo's original formula. Just copy and paste
    > > directly to the formula bar for that cell.
    > >
    > >
    > >
    > > Dr. Darrell wrote:
    > > >
    > > > I entered my file name: =MID(CELL(Test,A1),FIND("]",CELL(Test,A1))+1,32)
    > > >
    > > > I entered my file name along with it's extension:
    > > > =MID(CELL(Test.xls,A1),FIND("]",CELL(Test.xls,A1))+1,32)
    > > >
    > > > I entered my file name along with it's extension and it's path:
    > > > =MID(CELL('C':\Documents and Settings\Darrell.Roak.PUMP_EXCH\My
    > > > Documents\Test.xls,A1),FIND("]",CELL('C':\Documents and
    > > > Settings\Darrell.Roak.PUMP_EXCH\My Documents\Test.xls,A1))+1,32)
    > > >
    > > > The result was the same: #NAME (formular result = volitile)
    > > >
    > > > My worksheet Tab name is "Test Tab"
    > > >
    > > > Am I supposed to substitute something for "]" ?
    > > >
    > > > "Peo Sjoblom" wrote:
    > > >
    > > > > Why don't you try it
    > > > >
    > > > > --
    > > > >
    > > > > Regards,
    > > > >
    > > > > Peo Sjoblom
    > > > >
    > > > > "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    > > > > news:C46AA431-DAA0-49BF-AF6C-009954440374@microsoft.com...
    > > > > > Peo:
    > > > > >
    > > > > > This seems to be a method to extract text from a string in a given cell. I
    > > > > > don't think it will work with the TAB. (unless the Tab has an address
    > > > > similar
    > > > > > to a cell's address.
    > > > > >
    > > > > > "Peo Sjoblom" wrote:
    > > > > >
    > > > > > > One way
    > > > > > >
    > > > > > > =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,32)
    > > > > > >
    > > > > > >
    > > > > > > --
    > > > > > >
    > > > > > > Regards,
    > > > > > >
    > > > > > > Peo Sjoblom
    > > > > > >
    > > > > > > "Dr. Darrell" <DrDarrell@discussions.microsoft.com> wrote in message
    > > > > > > news:D0A70CB9-48BF-4BD6-BA17-3D10F8B1B3DB@microsoft.com...
    > > > > > > > Is there a function that links the text on the Worksheet Tab to a
    > > > > Cell?
    > > > > > > >
    > > > > > > > Darrell
    > > > > > >
    > > > > > >
    > > > > > >
    > > > >
    > > > >
    > > > >

    > >
    > > --
    > >
    > > Dave Peterson
    > >


    --

    Dave Peterson

  9. #9
    David
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too.

    =?Utf-8?B?RHIuIERhcnJlbGw=?= wrote

    > I copied and pasted the formular as typed by Peo and I got the same
    > result: "#NAME"
    >
    > Darrell


    I seem to recall you have to save the file before the formula takes effect.

    --
    David

  10. #10
    Dave Peterson
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too.

    But I get a #value! error if the workbook wasn't saved.

    David wrote:
    >
    > =?Utf-8?B?RHIuIERhcnJlbGw=?= wrote
    >
    > > I copied and pasted the formular as typed by Peo and I got the same
    > > result: "#NAME"
    > >
    > > Darrell

    >
    > I seem to recall you have to save the file before the formula takes effect.
    >
    > --
    > David


    --

    Dave Peterson

  11. #11
    David
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too.

    Dave Peterson wrote

    > But I get a #value! error if the workbook wasn't saved.


    I'll have to bow to your considerably greater experience in these matters.
    I just didn't see any reference to saving the file in this thread.

    --
    David

  12. #12
    Dave Peterson
    Guest

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too.

    It wasn't greater experience--I just copied the formula into a new workbook and
    saw the results <bg>.

    David wrote:
    >
    > Dave Peterson wrote
    >
    > > But I get a #value! error if the workbook wasn't saved.

    >
    > I'll have to bow to your considerably greater experience in these matters.
    > I just didn't see any reference to saving the file in this thread.
    >
    > --
    > David


    --

    Dave Peterson

  13. #13
    Registered User
    Join Date
    05-01-2012
    Location
    TulsaDuh
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: ... I would like the Worksheet Tab Title to be in Cell A1 too...

    Folks,

    This is an old discussion that I picked on, but if you do copy & paste the original formula, it works great.

    Visit me when in Tulsa,
    TulsaCPA

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1