MS Access 2016 - 是/否字段

问题描述 投票:0回答:1

我有一个简单的表单(Form1),它在命令按钮后面打开。我想将命令设置为宏,但我无法让它工作,所以我需要一些有关 VBA - 表单加载的帮助。

所以基本上我想打开 Form1,但只显示“已关闭”是/否数据类型字段为“否”的记录。我知道这应该是非常简单的事情..............任何帮助表示感谢

宏观

WHERE ISNULL(Forms!form1![已关闭])

forms ms-access filter macros
1个回答
0
投票
Example DoCmd.OpenForm(form1,acNormal,,"Closed=No"

Sub OpenForm(FormName,
             [View As AcFormView = acNormal], 
             [FilterName], 
           **[WhereCondition]**, 
             [DataMode As AcFormOpenDataMode = acFormPropertySettings], 
             [WindowMode As AcWindowMode = acWindowNormal], 
             [OpenArgs])
© www.soinside.com 2019 - 2024. All rights reserved.