How do you check if a textbox is empty in SSRS 2008? I've tried this code and it doesn't work.
IIF(ReportItems!txtCountVolunter.Value = "", false, true)
|
How do you check if a textbox is empty in SSRS 2008? I've tried this code and it doesn't work.
|
||||
|
|
|
Try the following:
|
|||
|
|
|
Try the IsNothing function like this: IIF(IsNothing(ReportItems!txtCountVolunter.Value), "empty", "not empty") |
|||
|
|
|
You should use this expression
The first: IsNothing(Fields!UserEmail.Value) checks if the field value is NULL The second: Fields!UserEmail.Value = "" checks of the filed value is empty "" So you need both of them in order to check if the value is either null or empth. |
|||
|
|