diff --git a/includes/webform.report.inc b/includes/webform.report.inc
index 56a29db..6f367bc 100644
--- a/includes/webform.report.inc
+++ b/includes/webform.report.inc
@@ -793,7 +793,7 @@ function webform_results_export($node, $format = 'delimited', $options = array()
           drupal_alter('webform_csv_data', $data, $component, $submission);
 
           if (is_array($data)) {
-            $row = array_merge($row, array_values($data));
+            $row[] = implode("\n", array_values($data));
           }
           else {
             $row[] = isset($data) ? $data : '';
