我在Excel中有一个带有两个TextBox的表单。我试图从这些TextBox中获取值作为VBA Excel中的查询条件。 我已经尝试了不同的方法来实现这一目标,但它只是不起作用。
谢谢!这是代码。
strSQL = "SELECT * " & _
"FROM reporte_fallas.reportefallas reportefallas_0 " & _
"WHERE (reportefallas_0.CREADT BETWEEN [Forms]![QueryUserForm]![StartDateTextBox] AND [Forms]![QueryUserForm]![EndDateTextBox])"
答案 0 :(得分:0)
请参阅以下答案:
How to add parameters to an external data query in Excel which can't be displayed graphically?
如果您要连接外部数据,另一个想法可能是使用DAO或ADO记录集。