我正在尝试在列表视图上设置此复选框,但无法使其正常工作,这是我的语法有问题。 我使用了这种语法和其他变体,但是box仍然是灰色的
=IIf([tblConfirm]![ReceiptDate] Is Null,"False","True")
答案 0 :(得分:2)
您应该可以使用:
=IsNull([tblConfirm].[ReceiptDate])
' or:
=[tblConfirm].[ReceiptDate] Is Null
,然后应用 True / False 的格式。