While the correct solution separates the toolbar from the workbook, I'm not sure how to do it in Excel 2007. As a workaround, you can use a macro to remove the toolbar every time the workbook opens:
Private Sub Workbook_Open()
' Delete the unwanted toolbar that is attached to this workbook.
Dim cmdbar As CommandBar
For Each cmdbar In Application.CommandBars
If cmdbar.Name = "Zap" Then
cmdbar.Delete
End If
Next End Sub
End Sub
John allan miller
source
share