Dim sb As WinForm.ComboBox = e.Form.Controls("地区及产业")
Dim mc As WinForm.ComboBox = e.Form.Controls("名称")
Dim dz As WinForm.TextBox = e.Form.Controls("地址")
Dim fs As WinForm.TextBox = e.Form.Controls("份数")
Tables("数据总表").filter="上报地区及产业 = '" & sb.text & "' And 订户名称 = '" & mc.text & "' And 订户地址 like '*" & dz.text & "*' and 份数 like '*" & fs.text & "*'
请问,这个设计公式有问题吗?我为什么设计完告诉我,错误代码:Tables("数据总表").filter="上报地区及产业 = '" & sb.text & "' And 订户名称 = '" & mc.text & "' And 订户地址 like '*" & dz.text & "*' and 份数 like '*" & fs.text & "*'
在线等。