I have some code that checks for a null value
If IsDBNull(Rec1.Fields("new_address2")) = true Then
End If
Everytime this code is reached, even if it is null, it will never step into the If statement. I have tried to look at all the examples on this site but nothing talks about pulling null values from databases and checking them. Thanks
