Using Split function to create array (comma delimiter):
Return to List
arySubList = Split(strTerm, ",", , vbTextCompare)
' If only 1 term present, will simply be arySubList(0) item. intUpper = UBound(arySubList)' Gives upper bounds; lower bounds always 0 For i = 0 to UBound(arySubList)
strElement = arySubList(i)' Cycling through elements of the array Next