J
JohnV
Heather,
You can use the split function to split the item into an
array.
dim strSplit as String, strTemp as string
strTemp = "444-1234"
strSplit= ","
aryTemp = Split(strTEMP, strSplit)
This will give you an array containing "444" and "1234"
Hope this helps.
JohnV
You can use the split function to split the item into an
array.
dim strSplit as String, strTemp as string
strTemp = "444-1234"
strSplit= ","
aryTemp = Split(strTEMP, strSplit)
This will give you an array containing "444" and "1234"
Hope this helps.
JohnV