What is the difference between the & and + when combining strings?
Printable View
What is the difference between the & and + when combining strings?
You should always use & for strings, + for numbers.
not much when combining text strings - the only time you'll notice the difference is when you add two numbers together
1 & 1 = 11
1 + 1 = 2
Sorry for getting around to this sooner. I wanted the thread to kick around a bit. :D
Thank you for all the input. You all have been very helpful.