Changing delimiter in a loaded csv file
问题 I have loaded a csv file in memory. My csv file uses ";" as the field delimiter. It seems vba default delimiter is "," because when I try to access certain row and column of the loaded csv file, vba advances through the elements with refrence to number of "," used. example: In the 10th row of my data there are five columns: aa 12,34 bb 5,678 (here "," is decimal separator) in the csv file which the delimiter is ";" it looks like this: aa;12,34;bb;5,678 so when I write MyData(10,2) I am