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
Pablo R. Ortiz
Feb 04, 2018Iron Contributor
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
Jaron Rosegg
Feb 06, 2018Copper Contributor
Hi P.R. Ortiz, yes, that would work.
- Pablo R. OrtizFeb 06, 2018Iron Contributor
Is the best workaround you will find. Please mark my reply as best response if it helped. Thanks.
- Jaron RoseggFeb 06, 2018Copper Contributor
The thing is, that does not help with the case where you want to select multiple, but not all, queries and connections...
- Pablo R. OrtizFeb 06, 2018Iron Contributor
In Get Data -> Edit queries you can select several queries for deletion, and the same for connection permissions in Get Data -> Data Source settings