Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找某人来解释如何按列过滤 ms-access 数据库并仅显示值高于文本框中给定值的单元格?
示例:如果文本框中的给定值为 3:
Column1 1 2 3 4 5
过滤...
Column1 4 5
您可以在查询中引用表单:
SELECT Column1 FROM ATable WHERE Column1 > Forms!AForm!txtTextbox
您还可以对表单应用过滤器,对于当前表单,您可能会说:
Private Sub txtTextbox_AfterUpdate() Me.Filter = "Column1>" & Me.txtTextbox Me.FilterOn = True End Sub