1

When writing an expression in SSRS 2008 to check for blank values (NULL), is there any difference between Fields!FieldName.Value = Nothing and Fields!FieldName.Value Is Nothing? It seems that i have seen it both ways. I am currently using = Nothing and it seems to be working.

Thanks

PK

user786028
  • 21
  • 2
  • 5
  • possible duplicate of [VB.NET - IsNothing versus Is Nothing](http://stackoverflow.com/questions/5791/vb-net-isnothing-versus-is-nothing) – lethaljd Aug 04 '14 at 13:43

1 Answers1

1

answered here in many ways: VB.NET - IsNothing versus Is Nothing

In short, one is a function call and one is straight evaluation.

Community
  • 1
  • 1
lethaljd
  • 500
  • 4
  • 11