05-13-2019 08:39 AM
Hello,
sorry for my little english
On my VI, i have on the output a data like that :
This come from a database.
I need to know if it's possible to take line by line to work on them?
i tried to use "array to spreadsheet string" with ";" to delimiter.
but now it's like that :
but i need to inject into a while one line by one line.
how i am suppose to do please?
thx
i have put 2 codes : one with the data outpout, one with the "array to spreadsheet string" but in test.
thank's
Solved! Go to Solution.
05-13-2019 09:09 AM
Using the autoindexing functionality of a for loop allows you to get line by line results, meaning you can manipulate the data row by row.
I would start with the for loop help file and/or search for autoindexing and LabVIEW
05-13-2019 09:10 AM
LabVIEW has a nice feature that allows you to work with one line (row) of data at a time.
Instead of using the array to spread sheet, wire the output of the database directly to the while loop. Right click on the box and select autoindexing.
You now have one row of data as an array.
Hope this helps
05-13-2019 09:14 AM - edited 05-13-2019 09:15 AM
ok i'll test it thank's