diff --git a/includes/webform.report.inc b/includes/webform.report.inc
index 1afea2b..0b32851 100644
--- a/includes/webform.report.inc
+++ b/includes/webform.report.inc
@@ -770,7 +770,7 @@ function webform_results_download($node, $format = 'delimited', $options = array
             $row = array_merge($row, array_values($data));
           }
           else {
-            $row[] = empty($data) ? '' : $data;
+            $row[] = isset($data) ? $data : '';
           }
         }
       }
