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:
But what about a variable name?![]()
ConcatenatedStrings = "I" & " " & "love" & " " & "excel."
For instance, say I want to concatenate the variable name ConcatenatedStrings:
I know the latter produces an error because neither Concatenated nor Strings has been defined... But is there any way to do so?![]()
VariableName = Concatenated & Strings
Thanks!
Bookmarks