I can't remember what it is. The opposite of
dim vArray as variant
vArray = Array(1,4,7)
creates a 3 element array of those values, but what builds a string from the
array?
sTemp = FunctionName(vA rray) would result in
sTemp = "1,4,7"
Tnanks.
Matthew Wells
MWells@NumberCr uncher.com
dim vArray as variant
vArray = Array(1,4,7)
creates a 3 element array of those values, but what builds a string from the
array?
sTemp = FunctionName(vA rray) would result in
sTemp = "1,4,7"
Tnanks.
Matthew Wells
MWells@NumberCr uncher.com
Comment