Hello,

Is there a way to concatenate a variable name like there is a literal string?

For instance, say I want to concatenate a string:
ConcatenatedStrings = "I" & " " & "love" & " " & "excel."
But what about a variable name?

For instance, say I want to concatenate the variable name ConcatenatedStrings:
VariableName = Concatenated & Strings
I know the latter produces an error because neither Concatenated nor Strings has been defined... But is there any way to do so?

Thanks!