【发布时间】:2011-11-29 22:52:46
【问题描述】:
您好,我有以下表达式。我想说“如果第二个字段不为空”。你能帮忙吗?
谢谢
=Iif((Fields!approved.Value = "N" & Fields!W_O_Count.Value IsNotNull), "Red", "Transparent")
【问题讨论】:
您好,我有以下表达式。我想说“如果第二个字段不为空”。你能帮忙吗?
谢谢
=Iif((Fields!approved.Value = "N" & Fields!W_O_Count.Value IsNotNull), "Red", "Transparent")
【问题讨论】:
使用Not IsNull(Fields!W_O_Count.Value)
【讨论】:
你可以这样做。请记住,IsNull 是一个函数,如果传递给它的参数为 null,则返回 TRUE,否则返回 false。
Not IsNull(Fields!W_O_Count.Value)
【讨论】: