Hi,
There indeed is a problem with the export when exporting products with characteristics.
Please change the code :
foreach($characteristicsColumns as $characteristic){
echo '"'.@$characteristics[$characteristic].'"'.$separator;
}
by the code:
$chars = array();
foreach($characteristicsColumns as $characteristic){
$chars[] = '"'.@$characteristics[$characteristic].'"';
}
echo implode($separator,$chars);
in the file "export" of the view "product" via the menu Display->Views and export again. That should solve the problem.