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, 2018Steel 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