You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two new blocks for importing and exporting CSV files are required:
Import CSV block parameters:
Filename
Character set
From row
Separated by (Tab, Comma, Semicolon, Space, Other)
Decimal separator (comma, point)
Column selection - one dimensional array of true and false values, e.g. if we want to read 1st, 3rd and 4th column, the array should be: (true, false, true, true)
Import into - one-dimensional array if we want to import one row at the time, or two-dimensional array if we want to import all rows (starting from From row)
Export CSV block parameters:
Filename
Character set
Separated by (Tab, Comma, Semicolon, Space, Other)
Decimal separator (comma, point)
Header - one-dimensional array with column names (skipped if empty)
Export from - one-dimensional array if we want to export one row at the time, or two-dimensional array if we want to export multiple rows at once
The text was updated successfully, but these errors were encountered:
Two new blocks for importing and exporting CSV files are required:
Filename
Character set
From row
Separated by
(Tab, Comma, Semicolon, Space, Other)Decimal separator
(comma, point)Column selection
- one dimensional array of true and false values, e.g. if we want to read 1st, 3rd and 4th column, the array should be: (true, false, true, true)Import into
- one-dimensional array if we want to import one row at the time, or two-dimensional array if we want to import all rows (starting fromFrom row
)Filename
Character set
Separated by
(Tab, Comma, Semicolon, Space, Other)Decimal separator
(comma, point)Header
- one-dimensional array with column names (skipped if empty)Export from
- one-dimensional array if we want to export one row at the time, or two-dimensional array if we want to export multiple rows at onceThe text was updated successfully, but these errors were encountered: