+ Reply to Thread
Results 1 to 5 of 5

Can cell get tab value-can one read the other?

  1. #1
    Wally
    Guest

    Can cell get tab value-can one read the other?

    Can a cell show the worksheet tab value?

    My worksheet tab and my title cell in my worksheet must have the same
    value. can one read the other so I only have to input the information
    once?

    Thanks

    Wally






  2. #2
    Paul B
    Guest

    re: Can cell get tab value-can one read the other?

    Wally, 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

    "Wally" <wtg_designs@hotmail.com> wrote in message
    news:9uhpe1h901oe5sq1ododnl0f1jfie4emsv@4ax.com...
    > Can a cell show the worksheet tab value?
    >
    > My worksheet tab and my title cell in my worksheet must have the same
    > value. can one read the other so I only have to input the information
    > once?
    >
    > Thanks
    >
    > Wally
    >
    >
    >
    >
    >




  3. #3
    David McRitchie
    Guest

    re: Can cell get tab value-can one read the other?

    Hi Wally,
    See my http://www.mvps.org/dmcritchie/excel/sheets.htm
    page for questions on sheets
    see my http://www.mvps.org/dmcritchie/excel/pathname.htm
    page for questions on extracting pathname, workbook name, sheetname

    VBA cell value gets worksheet tab value
    range("a1") = application.activesheet.name

    VBA worksheet tab gets cell value
    ActiveSheet.Name = Range("a1")

    you might also be interested in formatting with a date (with or w/o the prefix)
    ActiveSheet.Name = "D" & Format(Date, "yyyymmdd")
    ActiveSheet.Name = "D" & Format(Range("a1"), "yyyymmdd")
    ActiveSheet.Name = "D" & Format(Range("a1"), "yyyy_mmdd_hhmm")

    worksheet function cell value gets worksheet tab value
    =MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255)
    « The CELL formulas with "filename" will not work until the file has been saved (#VALUE! error).
    ---
    HTH,
    David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
    My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
    Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

    "Wally" <wtg_designs@hotmail.com> wrote in message news:9uhpe1h901oe5sq1ododnl0f1jfie4emsv@4ax.com...
    > Can a cell show the worksheet tab value?
    >
    > My worksheet tab and my title cell in my worksheet must have the same
    > value. can one read the other so I only have to input the information
    > once?
    >
    > Thanks
    >
    > Wally
    >
    >
    >
    >
    >




  4. #4
    David McRitchie
    Guest

    re: Can cell get tab value-can one read the other?

    and since you don't care which you change, you should be
    changing the sheetname, because you can't have two sheets
    with the same name so that would be the easiest way to go
    and not have to worry about intercepting errors.



  5. #5
    Forum Contributor
    Join Date
    02-19-2005
    Location
    Gurgaon,India
    MS-Off Ver
    2007,2010,2013
    Posts
    180
    Hi,

    Try,

    Define X

    =GET.DOCUMENT(76)&T(NOW())

    Now in the cell,

    =MID(X,FIND("]",X)+1,255)

    Note: It works in an unsaved workbook also.

    See here also

    HTH
    Kris

+ Reply to 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