我正在尝试制作一个 excel 宏,它将在 Excel 中为我提供以下功能:
=SQL("SELECT heading_1 FROM Table1 WHERE heading_2='foo'")
允许我使用 SQL 查询在我的工作簿表中搜索(甚至可能插入)数据。
这是我到目前为止所做的:
Sub SQL()
Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset
strFile = ThisWorkbook.FullName
strCon = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & strFile _
& ";Extended Properties=""Excel 12.0;HDR=Yes;IMEX=1"";"
Set cn = CreateObject("ADODB.Connection")
Set rs = CreateObject("ADODB.Recordset")
cn.Open strCon
strSQL = "SELECT * FROM [Sheet1$A1:G3]"
rs.Open strSQL, cn
Debug.Print rs.GetString
End Sub
我的脚本就像一个具有硬编码范围的魅力,例如上面片段中的那个。它也适用于静态命名范围。
但是,它不适用于对我来说最重要的动态命名范围或表名。
我找到的最接近的答案是这个遭受同样痛苦的人: http ://www.ozgrid.com/forum/showthread.php?t=72973
帮助任何人?
编辑
到目前为止,我已经完成了这个,然后我可以在我的 SQL 查询中使用生成的名称。限制是我需要知道表格在哪张纸上。我们可以为此做点什么吗?
Function getAddress()
myAddress = Replace(Sheets("Sheet1").Range("Table1").address, "$", "")
myAddress = "[Sheet1$" & myAddress & "]"
getAddress = myAddress
End Function
谢谢!