I’m building an app where I read data from my online database. Data is exported as csv so the app can read it.
I’m able tot get all the rows and read them as row.
Also able to select 1 row from the result list.
But I’m stuck when I want to split this row into pieces.
So, started with reading and used delimiter “newline”.
Selected a row (testing purpose atm)
tryed to format this row with delimiter “,”. But that gives no result at all.
Not with data from database, not with testlist I created in picture.
(with data in picture first step gives “a,b,c” and “d,e,f”. Second step gieves “d,e,f”. Last step gives nothing).
Been trying and searching for the last hour and a half so I could really use some help (really frustrated atm.)
For the one I’m trying now, 8 columns (and for the moment 2 rows for testing purpose, will be more afterwards)
(Sorry for late responce; posted it just before I went to bed)
App gets info trough webAPI en pulls csv file from database.
I can split the data that comes in with the “newline” functions into rows.
If I change “newline” to “,” in instance where data comes in, it splits it into cells.
Problem is I can’t do both. If I split it into rows, I get no result if I repaet it and try to split it into cells.