Interprets the list as a row of a table and returns a CSV (comma-separated value) text representing the row.
Each item in the row list is considered to be a field, and is quoted with double-quotes in the resulting CSV text. Items are separated by commas.
The returned row text does not have a line separator at the end.
Interprets the list as a table in row-major format and returns a CSV (comma-separated value) text representing the table.
Each item in the list should itself be a list representing a row of the CSV table.
Each item in the row list is considered to be a field, and is quoted with double-quotes in the resulting CSV text.
In the returned text, items in rows are separated by commas and rows are separated by CRLF (\r\n).
Parses a text as a CSV (comma-separated value) formatted table to produce a list of rows, each of which is a list of fields.
Rows can be separated by newlines (\n) or CRLF (\r\n).
I believe there is a problem in the documentation for list from csv table , however. CR LF will cause problems (as done using Windows Notepad), the break has to be LF only.
I believe there is a problem in the documentation for list from csv table , however. CR LF will cause problems (as done using Windows Notepad), the break has to be LF only.
There is a problem creating a csv table using Notepad ...the list from csv table component won't accept this.