Toggles between showing the
formula bar (and the name box) and not.
This menu item is ticked when the formula bar is
showing
Sub ShowFormulaBar()
'Toggles the setting to the opposite of current
With Application
If .DisplayFormulaBar = True Then
.DisplayFormulaBar = False
Else
.DisplayFormulaBar = True
End IfIf
End With
End Sub