Frequently Asked Questions
How to change the exported CSV separator, enclosure or newline characters?
Last Updated 3 years ago
As default, the CSV file
delimiter: ,
newline: \n
enclosure: "
You can open config/config.inc.php and edit export_csv_settings to change these options:
delimiter: ,
newline: \n
enclosure: "
You can open config/config.inc.php and edit export_csv_settings to change these options:
$config['export_csv_settings'] = array(The below options will change the csv separator to ;
'delimiter' => ',',
'newline' => '\n',
'enclosure' => '"' );
$config['export_csv_settings'] = array(
'delimiter' => ';',
'newline' => '\n',
'enclosure' => '"' );