5

The ribbon in Excel 2010 appears when I click on Home or Insert or one of the other tabs, but disappears again when I go back to editing my document. I'd like it to always be visible - how can I get it back so that it stays there?

Not sure whether the correct term for it would be "minimized", "hidden" or something else, but it's gone until I click a tab heading.

3 Answers3

8

Right click on one of the tab headings and uncheck Minimize the Ribbon.

Screenshot of menu option
Click for full size

Bob
  • 63,170
4

In addition to @Bob's answer, there's a little icon in the upper-right corner. It's to the left of the question mark in this picture:

enter image description here

Doug Glancy
  • 1,839
0

If using VBA code, insert this line to hide it:

Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",False)"

To unhide it, use:

Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",True)"
bwDraco
  • 46,683
Kharon
  • 1