I
Isis
Is there a difference in the results when using either of these ?
Thanks
Thanks
Using &, if both expressions are Null, result is Null. However, if
only one expression is Null, that expression is treated as a
zero-length string ("") when concatenated with the other expression.
Using +, however, if either of the expressions is Null, the result
will be Null as well.
In other words, "X" & Null results in "X". "X" + Null results in Null.
As my response to Doug above.. a nice one.. thanks John.
Immanuel Sibero