+ Reply to Thread
Results 1 to 4 of 4

placing a title at the bottom of the screen

Hybrid View

  1. #1
    Registered User
    Join Date
    05-11-2013
    Location
    Wigan, Englan
    MS-Off Ver
    Excel 2010
    Posts
    46

    placing a title at the bottom of the screen

    Hi Everyone

    In excel 2003 I know you could put a title at the bottom of the screen i.e. created by Michael Fairhurst (see attachment for the location of this). If I remember correctly this was done via a macro. does any one know how to do this in excel 2010?

    My spreadsheet is also attached if you want to give it a go

    Thanks

    Mike
    Attached Files Attached Files

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,317

    Re: placing a title at the bottom of the screen

    Place the following code in the Workbook module of your workbook. Save the workbook as a macro enabled Excel spreadsheet (.xlsm)

    Option Explicit
    
    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Application.StatusBar = False
    End Sub
    
    Private Sub Workbook_Open()
    Application.StatusBar = "Created by Michael Fairhurst"
    End Sub
    Close the workbook and open it again.


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: placing a title at the bottom of the screen

    http://www.excelforum.com/excel-prog...he-screen.html
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  4. #4
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,317

    Re: placing a title at the bottom of the screen

    Ditto what Martin said ...


    If you are satisfied with the solution(s) provided, please mark your thread as Solved.


    New quick method:
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

    Or you can use this way:

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save


    You may also want to consider thanking those people who helped you by clicking on the little star at the bottom left of their reply to your question.

+ 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