Hello,
I have this long string that I want to convert into a table with two columns (name and price). I used ":" and ";" in the string so I wish these were the separators. So, the string, for example, is: "banana: 40; apple:50; coconut: 30;"
This way I want the name appear in a column and the price in the second one. I was able to develop a listbox where each "name: price" was in a row by using the Split function. So, do you know how can I do this?
Does someone knows how I can do it?