diff --git a/webform_report.inc b/webform_report.inc
index bcc4901..048a66b 100644
--- a/webform_report.inc
+++ b/webform_report.inc
@@ -43,6 +43,7 @@ function _webform_report_get_components($nid) {
   $components[-5] = array('name' => t('Edit Link'), 'type' => 'link');
   $components[-6] = array('name' => t('View Link'), 'type' => 'link');
   $components[-7] = array('name' => t('Delete Link'), 'type' => 'link');
+  $components[-8] = array('name' => t('Submission Number'), 'type' => 'string');
 
   // get components from webform  
   $result = db_query("SELECT c.cid, c.name, c.type FROM {webform_component} c WHERE c.type <> 'fieldset' AND c.nid = %d ORDER BY c.weight", $nid);
@@ -454,6 +455,9 @@ function _webform_report_get_report_data($node) {
           if (array_key_exists(-7, $fields)) {
             $data[-7] = array(l(t('delete'), 'node/'. $row->nid . '/submission/' . $row->sid . '/delete'));
           }
+          if (array_key_exists(-8, $fields)) {
+            $data[-8] = array($row->sid);
+          }
         }
       
         // if component is on report
