Thread
:
ODBC QueryTable Location (Cell address)
View Single Post
#
2
Posted to microsoft.public.excel.programming
ward376
external usenet poster
Posts: 360
ODBC QueryTable Location (Cell address)
Dim ws As Worksheet
Dim qt As QueryTable
Sub qtAddy()
For Each ws In ThisWorkbook.Worksheets
For Each qt In ws.QueryTables
MsgBox qt.Destination.Address
Next qt
Next ws
End Sub
Thanks!
Cliff Edwards
Reply With Quote
ward376
View Public Profile
Find all posts by ward376