Hey guys,
Im having a slight issue with a returned value not triggering my If statement the way that i would like.

VB Code:
  1. If ors("") = Null Then
  2. txtTotNon = "0"
  3. Else
  4. txtTotNon = ors("")
  5. End If

What exactly am i doing wrong that is causing the statement to not make txtTotNon = "0". The initial value comes back as NULL but skips right to the else and causes an error message. Ive tried both "null" and null but both skip over. Any help would be greatly appreciated. thanks.
tibor