Hey guys.....
can someone tell me why when I pass a NULL value to this function, the logic comes back as NULL and not an empty string?......
Thanks, Ken
Public Function Field2Str(strValue As String) As String
If IsNull(Trim(strValue)) Then
Field2Str = " "
Else
Field2Str = Trim(strValue)
End If
End Function