| Message |
I continue to be confused. I wonder if what I am calling an array is different than what it is in VBA. I don't want an array with rows and columns, I just want a variable that holds comma delimited values, something like this:
Dim arrayValues as Array
arrayValues.add ("Text Input1")
arrayValues.add("Text Input2")
arrayValues.add ("Text Input3")
resulting in: arrayValues = ["Text Input1", "Text Input2", "Text Input3"]
I this different than what you are talking about? Does the length of the array need to be specified for this? |