我花了一天的大部分时间,但我已经弄清楚了。这是代码:
Sub Excel_QueryTable()
Sheet2.Cells.ClearContents
Dim oCn As ADODB.Connection
Dim oRS As ADODB.Recordset
Dim ConnString As String
Dim SQL As String
Dim qt As QueryTable
ConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\t.xlsm;Extended Properties=Excel 8.0;Persist Security Info=False"
Set oCn = New ADODB.Connection
oCn.ConnectionString = ConnString
oCn.Open
SQL = "Select * from [Sheet1$] WHERE type='man'"
Set oRS = New ADODB.Recordset
oRS.Source = SQL
oRS.ActiveConnection = oCn
oRS.Open
Set qt = Worksheets(2).QueryTables.Add(Connection:=oRS, _
Destination:=Range("A1"))
qt.Refresh
If oRS.State <> adStateClosed Then
oRS.Close
End If
If Not oRS Is Nothing Then Set oRS = Nothing
If Not oCn Is Nothing Then Set oCn = Nothing
End Sub
要使其在您自己的工作簿上运行,您需要将Data Source
路径更改为您正在使用的文件的名称。
[Sheet1$]
查询中是您从中选择的工作表的名称(留在 中$
)。
Worksheets(2)
是您在其中创建动态表的工作表的编号。
此外,您需要通过在 Excel 中的 VBA 编辑器中启用其中一个Microsoft Active X Data Objects
库。Tools>References