diff --git a/includes/simplenews.admin.inc b/includes/simplenews.admin.inc
index 7120bdc..6ad9afc 100755
--- a/includes/simplenews.admin.inc
+++ b/includes/simplenews.admin.inc
@@ -319,6 +319,7 @@ function simplenews_admin_categories() {
     foreach ($categories as $category) {
       $form[$category->tid]['#category'] = $category;
       $form[$category->tid]['name'] = array('#markup' => check_plain(_simplenews_newsletter_name($category)));
+      $form[$category->tid]['count'] = array('#markup' => check_plain(simplenews_count_subscriptions($category->tid)));
       $form[$category->tid]['weight'] = array('#type' => 'weight', '#delta' => 10, '#default_value' => $category->weight);
       $form[$category->tid]['edit'] = array(
         '#type' => 'link',
@@ -368,6 +369,7 @@ function theme_simplenews_admin_categories($variables) {
 
       $row = array();
       $row[] = drupal_render($category['name']);
+      $row[] = drupal_render($category['count']);
       if (isset($category['weight'])) {
         $category['weight']['#attributes']['class'] = array('simplenews-category-weight');
         $row[] = drupal_render($category['weight']);
@@ -378,6 +380,7 @@ function theme_simplenews_admin_categories($variables) {
   }
 
   $header = array(t('Newsletter category name'));
+  $header[] = t('Subscribers');
   if (isset($form['submit'])) {
     $header[] = t('Weight');
     drupal_add_tabledrag('newsletter-category', 'order', 'self', 'simplenews-category-weight');
