Hello,

I am trying to extract the individual words that are comma delimited in a userform textbox into an array where each word has its own reference in the array.

For example, if the following is put in the textbox:
CMD,EXT,VEH,PER

I want an array 'A' with
A(1) = CMD
A(2) = EXT
.
.
.

I've found a couple VBA examples on parsing sentences, but Visio doesn't seem to have the same functions that they are using. Can anyone lend me a hand. I am new to VBA.