Forum Discussion
Jaron Rosegg
Jan 26, 2018Copper Contributor
Office 365 - Delete data connections in one go
Hi all, first post here as recommended by Philip Pio from Microsoft (https://answers.microsoft.com/en-us/msoffice/forum/msoffice_excel-mso_win10-mso_365hp/office-365-delete-connections-in-one-go/3011...
- Feb 04, 2018
you can use this vbscript in a Macro button:
Sub Remove() Dim connection As WorkbookConnection Dim query As WorkbookQuery On Error Resume Next For Each connection In ThisWorkbook.Connections connection.Delete Next For Each query In ThisWorkbook.Queries query.Delete Next End Sub
mwhelan
Apr 26, 2021Copper Contributor
There's an easier way to do this now. In the Queries & Connections sidebar, select the first connection you want to delete. Then you can SHIFT + Click the bottom entry and it will highlight all the entries in between. You can then right click and choose Delete.