22
嗨,我有以下表達式。我想說「如果第二個字段不是空的」。你能幫我嗎。我要怎麼說在VBA中不是空的
感謝
=Iif((Fields!approved.Value = "N" & Fields!W_O_Count.Value IsNotNull), "Red", "Transparent")
嗨,我有以下表達式。我想說「如果第二個字段不是空的」。你能幫我嗎。我要怎麼說在VBA中不是空的
感謝
=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)