diff --git a/office_hours.module b/office_hours.module
index 358c812..572f3ce 100644
--- a/office_hours.module
+++ b/office_hours.module
@@ -92,6 +92,15 @@ function office_hours_property_info_callback(&$info, $entity_type, $field, $inst
     'setter callback' => 'entity_property_verbatim_set',
     'default' => 0,
   );
+  $property['property info']['currentstatus'] = array(
+    'type' => 'integer',
+    'label' => t('Current status'),
+    'description' => 'Gives an indication wether the locatoon is open or closed <i>at this moment</i>.',
+    'sanitized' => TRUE,
+    'setter callback' => 'entity_property_verbatim_set', // JVO: nodig??
+    'getter callback' => '_office_hours_get_current_status',
+    'default' => 0,
+  );
 }
 
 /**
@@ -713,7 +722,7 @@ function office_hours_element_info() {
       '#process' => array('_office_hours_block_process'),
       '#element_validate' => array('_office_hours_block_validate'),
       '#tree' => TRUE,
-      '#columns' => array('day', 'starthours', 'endhours'),
+      '#columns' => array('day', 'starthours', 'endhours', 'currentstatus'),
       '#theme' => 'office_hours_block',
       '#attached' => array(
 //        'css' => array(
@@ -895,6 +904,33 @@ function _office_hours_field_formatter_defaults($settings = array()) {
 }
 
 /*
+ * Callback function for Views. http://drupal.org/node/1895608
+ */
+function _office_hours_get_current_status($item, array $options, $name, $type, $context) {
+  $field_instances = field_info_instances($type, $item->type);
+  
+  $index = NULL;
+  
+  foreach($field_instances as $field_name => $field) {
+    if ($field['widget']['type'] != 'office_hours') {
+      continue;
+    }
+    
+    $data = $item->$field_name;
+    $data = $data[$item->language][0];
+    
+    $from = $data['from'];
+    $to   = $data['to'];
+
+    $index = $index === NULL ? $from : min(min($index, $from), $to);
+  }
+  
+  return $index;
+}
+
+
+/*
 function office_hours_field_views_data($field) {
         $data = _office_hours_views_field_views_data($field);
         $db_info = $field['storage'];
