How to check if SSRS Textbox is empty

Link picture Link · Oct 5, 2012 · Viewed 67k times · Source

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)

Answer

rashkay picture rashkay · Oct 5, 2012

Try the following:

=IIF(Len(ReportItems!txtCountVolunteer.Value) <= 0, true, false)