My code won't work if your numbers are delimited differently. Try replacingwith![]()
splitStr = Split(strToSplit, ", ")
in your workbook. This will work if your numbers are separated by a comma only (as opposed to a comma followed by a space like I originally assumed).![]()
splitStr = Split(strToSplit, ",")
I hope this helps![]()
Bookmarks