How is possible to lose a Category from the Menu Bar and

A

Alan Calan

How do you get it back. I lost the entire FORMAT category from the
menu bar. I tried resetting and that didn't work.
 
D

Daniel.C

Execute the following macro :
Sub test()
CommandBars(1).Controls(5).Visible = True
CommandBars(1).Controls(5).Enabled = True
End Sub
 
Top