looping through comma delimited text

D

DZ

Hi

I need to do something with a comma delimited block of text .

.....like
text , text, text, etc

Can someone help me write a loop to loop through each block of text between
commas?

Thanks alot for any help
 
J

John W. Vinson

Hi

I need to do something with a comma delimited block of text .

....like
text , text, text, etc

Can someone help me write a loop to loop through each block of text between
commas?

Thanks alot for any help

Take a look at the VBA help for the Split() function.
 
Top