![]() |
where do my SQL querries get stored in the MS query tool in excel?
I am not sure what happened but when I right click on my tables to edit my
querry I am getting a bunch of errors and I cannot open the MS query tool. Where are my SQL queries stored? (please for the love of god tell me in the spreadsheet somewhere) -- Neall |
where do my SQL querries get stored in the MS query tool in excel?
Look up the VBA Help for the QueryTable object and CommandText
Sub ListQTs() Dim ws As Worksheet, qt As QueryTable On Error Resume Next ' ignore errors getting SQL CommandText For Each ws In ActiveWorkbook.Worksheets For Each qt In ws.QueryTables Debug.Print qt.Name, qt.Connection Debug.Print vbTab, qt.CommandText Next Next End Sub |
All times are GMT +1. The time now is 12:31 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com