TempVars的标准 - 但如果tempvars为null则提示用户

时间:2017-02-17 16:11:42

标签: ms-access

我正在尝试在Access中创建一个使用TempVars的查询,这样当查询运行并且已填充了tempvars时,它会使用该值,但是如果尚未填充它,则会提示用户输入日期。 以下是我目前正在尝试的查询标准,但它无效。

IIF(IsNull([TempVars]![Role_DT]), [TempVars]![Role_DT],[please enter the date to report])

每次运行查询时,即使填充了TempVars,也会出现一个对话框来输入日期。

有没有这样做?

1 个答案:

答案 0 :(得分:0)

另一种方式是IIf

IIf([TempVars]![Role_DT] Is Not Null, [TempVars]![Role_DT], [Please enter the date to report])