diff --git a/og_statistics.views.inc b/og_statistics.views.inc
index b85479e..8bc16d2 100644
--- a/og_statistics.views.inc
+++ b/og_statistics.views.inc
@@ -14,6 +14,22 @@ function og_statistics_views_data() {
   return $data;
 }
 
+/**
+* Implementation of hook_views_handlers().
+*/
+function og_statistics_views_handlers() {
+  return array(
+    'info' => array(
+      'path' => drupal_get_path('module', 'og_statistics'),
+    ),
+    'handlers' => array(
+      'og_statistics_handler_filter_posts_count' => array(
+        'parent' => 'views_handler_filter_numeric',
+      ),
+    ),
+  );
+}
+
 function og_statistics_views_og_statistics() {
   $data['og_statistics']['table']['group'] = t('OG Statistics');
 
@@ -36,6 +52,7 @@ function og_statistics_views_og_statistics() {
   );
   $data['og_statistics']['posts_count'] = array(
     'title' => t('Group Statistic: Posts Count'),
+    'help' => t('The number of posts within the group.'),
     'real field' => 'posts_count',
     'field' => array(
       'handler' => 'views_handler_field_numeric',
@@ -44,6 +61,9 @@ function og_statistics_views_og_statistics() {
     'sort' => array(
       'handler' => 'views_handler_sort',
     ),
+    'filter' => array(
+      'handler' => 'og_statistics_handler_filter_posts_count',
+    ),
   );
   $data['og_statistics']['comments_count'] = array(
     'title' => t('Group Statistic: Comments Count'),
diff --git a/og_statistics_handler_filter_posts_count.inc b/og_statistics_handler_filter_posts_count.inc
new file mode 100644
index 0000000..03226e4
--- /dev/null
+++ b/og_statistics_handler_filter_posts_count.inc
@@ -0,0 +1,4 @@
+<?php
+
+class og_statistics_handler_filter_posts_count extends views_handler_filter_numeric {
+}
\ No newline at end of file
