30-01-24 09:01 PM
Hi, I have a read that gets a list as a text. In the data item there is no good split char to use but I noticed in the date item if I change the mode from plain text to javascript I do get them in a nice list order. But how do I change the mode of the data item to javascript?
30-01-24 11:47 PM
Changing the mode is not an option - that is for reading only.
If the javascript parser is breaking up the text into lines, I suspect you could split the text by Chr(10).
Also try Split Lines as it might be that you're talking about splitting by the lines??
31-01-24 07:15 AM
This is to Anton, I did try the split the text but it came back as one line. It looks like this before splitting, "First rowSecond RowThird Row" etc so there is no char to split with
31-01-24 08:21 AM
I got it, split lines did it :)