Hallo,
wenn Du die Mappe geöffnet hast, drücke ALT und F11. Dort kommst Du zum VBA. Hier Bild-Bsp.

Dort "DieseArbeitsmappe" Doppelclick und Du kommst zu Code.
Hier als Bsp.
Sub Workbook_Open()
For Each c In Application.CommandBars
c.Enabled = False
Next
If Application.DisplayFormulaBar = True Then
Application.DisplayFormulaBar = False
End If
Dim objBar As CommandBar
Dim objPopUp As CommandBarPopup
Dim objBtn As CommandBarButton
Dim strBar As String
strBar = "Navigation"
On Error Resume Next
Application.CommandBars(strBar).Delete
On Error GoTo 0
Set objBar = Application.CommandBars.Add( _
Name:=strBar, _
Position:=msoBarTop, _ 'HIER LEGST DU DIE POSITION FEST
MenuBar:=False, _
Temporary:=True).......
Suche nach der von mir erwähnten Zeichenfolge! Sollte Sie nicht vorhanden sein, poste mal Deine Datei!
lg rene