To get a shorter version of the Null or Empty check, use an "= Nothing" comparison.
Iif(Fields!UserEmail.Value = Nothing, "Null or Empty", "Not Null or Empty")
The "= Nothing" will check simultaneously against Null or Empty, giving a more compact expressio...