Skip to content

VBA - Launch Edit Links Dialog

Code

To open the default External Links Manager Dialog in Excel using VBA, you can use the VBA Sub Procedure below:

Public Sub ExternalLinksMgr()

  Application.CommandBars.FindControl(ID:=759).Execute

End Sub

Notes

  • This VBA uses the Application.CommandBars collection’s method FindControl for the supplied ID of 759.

Backlinks:

list from [[VBA - Launch Edit Links Dialog]] AND -"Changelog"