I have 2 variables/phrases that are needed and trying to combine them to be one string of text
so...if "Doug" is the value in A1, the value that would be put in A2 is "Doug, Bob"
I am having issues with the combined part and I am sure it is just simple syntax
HTML:
dim Variable1 as string
dim Combined as string
' set old variable to be value in A1'
range ("A1").select
activecell.value = Variable1
'Set combined variable....this should be variable 1 and then the text below'
Combined = &Variable1& & ", Bob"
'put combined value in a2
Range("A2").select
activecell.value = combined
so...if "Doug" is the value in A1, the value that would be put in A2 is "Doug, Bob"
I am having issues with the combined part and I am sure it is just simple syntax