Write Csv File
Write the data table into a CSV file.
Write the data table into a CSVfile with a specified delimiter.
Input
Column Delimiter :
String Argument
The column delimiter to be written.
{comma}, {pipe}, {tab}, {colon}, {semicolon}, {space} are predefined characters. Enter custom delimiters between braces. Example - {##} specifies ## as the delimiter.
Column Header : The column header to be written.
True
- The column names from the data table will be added to the CSV file.False
- The column names from the data table will not be added to the CSV file.
Data Table :
DataTable Variable
Required
The data table to be written.File Name :
String Argument
Required
The full path of the filename that is to be written.Missing Value Pattern :
String Argument
Optional
The value that will replace the empty values in the CSV file.Over Write : Specifies whether file content is to be overwritten or appended.
True
- The file content will be overwritten.False
- The file content will not be overwritten.Append
- The file content will be appended to the existing content.
Last updated