+ Reply to Thread
Results 1 to 5 of 5

How to minimize ribbon

Hybrid View

Obfuscated How to minimize ribbon 07-31-2013, 01:54 AM
Debraj Roy Re: How to minimize ribbon 07-31-2013, 02:14 AM
Obfuscated Re: How to minimize ribbon 07-31-2013, 02:27 AM
Debraj Roy Re: How to minimize ribbon 07-31-2013, 02:34 AM
Obfuscated Re: How to minimize ribbon 07-31-2013, 02:40 AM
  1. #1
    Registered User
    Join Date
    12-20-2008
    Location
    Arkansas
    MS-Off Ver
    2010
    Posts
    87

    How to minimize ribbon

    I know the commands to max/min the app and windows, but what would I use to minimize/maximize the ribbon in excel 2010?

  2. #2
    Forum Expert Debraj Roy's Avatar
    Join Date
    09-27-2012
    Location
    New Delhi,India
    MS-Off Ver
    Excel 2013
    Posts
    1,469

    Re: How to minimize ribbon

    Did you tried with Ctrl + F1
    Regards!
    =DEC2HEX(3563)

    If you like someone's answer, click the star to give them a reputation point for that answer...

  3. #3
    Registered User
    Join Date
    12-20-2008
    Location
    Arkansas
    MS-Off Ver
    2010
    Posts
    87

    Re: How to minimize ribbon

    Sorry for the lack of info. I meant to say, in a macro.

  4. #4
    Forum Expert Debraj Roy's Avatar
    Join Date
    09-27-2012
    Location
    New Delhi,India
    MS-Off Ver
    Excel 2013
    Posts
    1,469

    Re: How to minimize ribbon

    Ok.. so in this.. case..
    Hope below will work for you..

    Private Sub Workbook_Activate() 
        On Error Resume Next 
        With Application 
            .DisplayFullScreen = True 
            .CommandBars("Worksheet Menu Bar").Enabled = False 
        End With 
         
    End Sub 
     
    Private Sub Workbook_Deactivate() 
        On Error Resume Next 
        With Application 
            .DisplayFullScreen = False 
            .CommandBars("Worksheet Menu Bar").Enabled = True 
        End With 
         
    End Sub
    Attachment 254352

  5. #5
    Registered User
    Join Date
    12-20-2008
    Location
    Arkansas
    MS-Off Ver
    2010
    Posts
    87

    Re: How to minimize ribbon

    SUPER! Thanks.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 2
    Last Post: 05-04-2012, 04:57 PM
  2. Minimize Ribbon VBA
    By WilliamJones in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-26-2010, 01:27 PM
  3. Code to minimize Excel 2007 ribbon
    By glenin in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 02-23-2009, 01:18 AM
  4. How do I minimize the Ribbon using VBA
    By yokese in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-23-2007, 03:49 AM
  5. Replies: 2
    Last Post: 07-08-2005, 11:05 PM

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