VBA supports 2 different concatenation operators, + and & and both perform the exact same function when used with String types - the right-hand String is appended to the end of the left-hand String.
If the & operator is used with a variable type other than a String, it is implicitly cast to...