If I am retrieving a value from a database which could be Null, will adding a "" to the value avoid the problem of the value potentially being Null?
Dim strFinal as String
strFinal = rsCustomers("Suburb") & ""
If rsCustomers("Suburb") happens to be Null, will the adding of "" to it cause the result to be a string?
I am looking at someone else’s code and I am just trying to understand why there is the continual use of this pattern.
I have found exactly your question here Two handy functions for Null handling in “Tip of the Day”