I am importing CSV files into xl2007 --- So I read each line as one long string ---- then I use the split command to parse it into an array --- however I have Quoted text strings where the user has used a comma in the text ---- i.e. "Shoes, children" -- the code below splits these into different array elements --- how can I ensure that quoted text strings are not split.
Thanks Rasm
Code:MyString1 = Split(MyString(ii), ",")
Bookmarks