SSRS 2008でテキストボックスが空かどうかを確認するにはどうすればよいですか?私はこのコードを試しましたが、うまくいきません。
IIF(ReportItems!txtCountVolunter.Value = "", false, true)
以下を試してください:
=IIF(Len(ReportItems!txtCountVolunteer.Value) <= 0, true, false)
この式を使用する必要があります
=IIF(IsNothing(Fields!UserEmail.Value) OR Fields!UserEmail.Value = "",
"Empty", "Not Empty")
最初:IsNothing(Fields!UserEmail.Value)はフィールド値がNULLかどうかをチェックします2番目:Fields!UserEmail.Value = ""フィールド値のチェックは空白 ""
そのため、値がnullまたは空のいずれかであるかどうかを確認するには、これらの両方が必要です。
Nullを確認
=IIF(IsNothing(ReportItems!txtCountVolunteer.Value),true, false)
次のようなIsNothing関数を試してください。
IIF(IsNothing(ReportItems!txtCountVolunter.Value)、 "empty"、 "not empty")
.NETの世界から来た人で、空ではないことを確認し、引数のために空白ではなく値0を使用したい場合!
=IIf(String.IsNullOrEmpty(ReportItems!txtCountVolunteer.Value), 0, ReportItems!txtCountVolunteer.Value)