+ Reply to Thread
Results 1 to 6 of 6

VBA to place sheet name in cell

  1. #1
    Forum Contributor
    Join Date
    03-21-2004
    Location
    Norwich, CT USA
    MS-Off Ver
    Excel 2010
    Posts
    163

    Question VBA to place sheet name in cell

    I am using a formula:
    “Sheet "& MID(CELL("filename",B11),FIND("]",CELL("filename",B11))+2, LEN(CELL("filename",B11))-FIND("]",CELL("filename",B11))) “

    to place part of the worksheet name in a cell. However because of formatting requirements I cannot use a formula. Can I do this using VBA? Then I could have the macro run each time the workbook is closed to keep the cell up to date.

    Thanks
    Robert

  2. #2
    Tom Ogilvy
    Guest

    Re: VBA to place sheet name in cell

    You could use the BeforeSave event

    See Chip Pearson's page on events
    http://www.cpearson.com/excel/events.htm

    worksheets(1).Range("B2').Value = "Sheet " & worksheets(1).Name

    --
    Regards,
    Tom Ogilvy


    "Hammer_757" <Hammer_757.1uj1ed_1125320723.963@excelforum-nospam.com> wrote
    in message news:Hammer_757.1uj1ed_1125320723.963@excelforum-nospam.com...
    >
    > I am using a formula:
    > "Sheet "& MID(CELL("filename",B11),FIND("]",CELL("filename",B11))+2,
    > LEN(CELL("filename",B11))-FIND("]",CELL("filename",B11))) "
    >
    > to place part of the worksheet name in a cell. However because of
    > formatting requirements I cannot use a formula. Can I do this using
    > VBA? Then I could have the macro run each time the workbook is closed
    > to keep the cell up to date.
    >
    > Thanks
    > Robert
    >
    >
    > --
    > Hammer_757
    > ------------------------------------------------------------------------
    > Hammer_757's Profile:

    http://www.excelforum.com/member.php...fo&userid=7413
    > View this thread: http://www.excelforum.com/showthread...hreadid=400037
    >




  3. #3
    Forum Contributor
    Join Date
    03-21-2004
    Location
    Norwich, CT USA
    MS-Off Ver
    Excel 2010
    Posts
    163

    Thumbs up

    Thanks tom, that was too simple to be true

  4. #4
    Bob Phillips
    Guest

    Re: VBA to place sheet name in cell

    What formatting requirements would stop a formula?

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Hammer_757" <Hammer_757.1uj1ed_1125320723.963@excelforum-nospam.com> wrote
    in message news:Hammer_757.1uj1ed_1125320723.963@excelforum-nospam.com...
    >
    > I am using a formula:
    > "Sheet "& MID(CELL("filename",B11),FIND("]",CELL("filename",B11))+2,
    > LEN(CELL("filename",B11))-FIND("]",CELL("filename",B11))) "
    >
    > to place part of the worksheet name in a cell. However because of
    > formatting requirements I cannot use a formula. Can I do this using
    > VBA? Then I could have the macro run each time the workbook is closed
    > to keep the cell up to date.
    >
    > Thanks
    > Robert
    >
    >
    > --
    > Hammer_757
    > ------------------------------------------------------------------------
    > Hammer_757's Profile:

    http://www.excelforum.com/member.php...fo&userid=7413
    > View this thread: http://www.excelforum.com/showthread...hreadid=400037
    >




  5. #5
    Forum Contributor
    Join Date
    03-21-2004
    Location
    Norwich, CT USA
    MS-Off Ver
    Excel 2010
    Posts
    163
    Multiple fonts, check this post
    Multiple fonts in one cell

  6. #6
    Tom Ogilvy
    Guest

    Re: VBA to place sheet name in cell

    the code worked fine for me when used on any sheet that was active.

    Produced the correct name.

    --
    Regards,
    Tom Ogilvy

    "Hammer_757" <Hammer_757.1ukyuj_1125410752.817@excelforum-nospam.com> wrote
    in message news:Hammer_757.1ukyuj_1125410752.817@excelforum-nospam.com...
    >
    > I spoke too soon
    >
    > Starting with Tom's sugestion, I came up with the following which works
    > fine as long as I am on the first worksheet:
    >
    > Sub SheetNumberUpdate()
    >
    > 'Updates sheet number cell to match sheet (tab) name
    >
    > ActiveSheet.Range("E54").Font.Bold = False
    > 'clears cell formating
    >
    > ActiveSheet.Range("E54").Value = "Sheet " & ActiveSheet.Name
    > 'copies worksheetname to cell "Sheet #####"
    >
    > ActiveSheet.Range("E54").Characters(1, 5).Font.Bold = True
    > 'sets the word "Sheet" to bold font
    >
    > End Sub
    >
    > However, when I use it on one of the other worksheets, say sheet 5 or
    > 6, the cell is updated with the sheet name from the first worksheet. I
    > thought by using Activesheet. Range and Activesheet.name and making sure
    > the desired sheet is active this would work. what am I missing?
    >
    >
    > --
    > Hammer_757
    > ------------------------------------------------------------------------
    > Hammer_757's Profile:

    http://www.excelforum.com/member.php...fo&userid=7413
    > View this thread: http://www.excelforum.com/showthread...hreadid=400037
    >




+ 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