I'm trying to programmatically open "Queries & Connections" CommandBar. It's by default docked to the right (msoBarRight)
However, just setting .Visible = True opens it too narrow.
I tried to fix that by setting .Width but it just ignores it...
No problems if CommandBar is floating though.
I'm using Excel 365.
Example code below:
With Application.CommandBars("Queries and Connections")
.Visible = True
.Width = 350 'This part does nothing
End With