Is there a shorter way of appending information to an existing string in vba than:
strExample = strExample & "Lorem Ipsum"
I've got a lot of these when compiling dynamic strings, and it'd save time and look neater in my code if there was a shorter way of typing this.
Thanks
No sorry this is not possible.
With vb.net you can use the operator &=
.
But it is not available in vbscript and not in VBA.