This question comes from a comment under Range.Formula= in VBA throws a strange error.
I wrote that program by trial-and-error so I naturally tried + to concatenate strings.
But is & more correct than + for concatenating strings?
This question comes from a comment under Range.Formula= in VBA throws a strange error.
I wrote that program by trial-and-error so I naturally tried + to concatenate strings.
But is & more correct than + for concatenating strings?
The main (very interesting) difference for me is that:
"string" & Null -> "string"
while
"string" + Null -> Null
But that's probably more useful in database apps like Access.