when I use the function split to break a string into an array I get 2 different results.
if I type in the string in the code the return is an one dimensional array —array(0), array(1), array(2)
values_array = Array(Split("value1, value2", ","))
however, if read the value from a cell or something, the return is a two dimensional array — array(0,0), array(0,1), array(0,2)
values_array = Array(Split(row.Columns(2).Value, ","))
PS. in the line of code above "row" is dim as range
it probably looks stupid, but I tried it this way and it didn't work
values_array = Array(Split(Format(row.Columns(2).Value, "@"), ","))
