When exporting in CSV, I get errors in the cells of the csv file:
The data is in text mode, including the amounts. For the amounts I have an assignment in the form (number_format (({base}), 2, ',', '.'). "". {Symbol})
I solved it by modifying line 110 of the ReportCsv.php file
of
$this->text. = "= \" ". $ output." \ ",";


to
$this->text. = "\" ". $ output." \ ",";


Attached images