diff --git a/commerce_extra_price_formatters.module b/commerce_extra_price_formatters.module
index a73f9e1..fdc750e 100644
--- a/commerce_extra_price_formatters.module
+++ b/commerce_extra_price_formatters.module
@@ -49,6 +49,14 @@ function commerce_extra_price_formatters_field_formatter_info() {
         'raw' => FALSE,
       ),
     ),
+
+    'commerce_price_amount_without_currency' => array(
+      'label' => t('Amount without currency'),
+      'field types' => array('commerce_price'),
+      'settings' => array(
+        'calculation' => TRUE,
+      ),
+    ),
   );
 }
 
@@ -257,6 +265,10 @@ function commerce_extra_price_formatters_field_formatter_settings_summary($field
         $summary[] = t('Show base price with no decimals.');
       }
     break;
+
+    case 'commerce_price_amount_without_currency':
+      $summary[] = t('Display just the amount of a price');
+    break;
   }
   return implode('<br />', $summary);
 }
@@ -374,6 +386,12 @@ function commerce_extra_price_formatters_field_formatter_view($entity_type, $ent
             '#markup' => $markup,
           );
         break;
+
+        case 'commerce_price_amount_without_currency':
+          $element[$delta] = array(
+            '#markup' => commerce_currency_amount_to_decimal($item['amount'], $item['currency_code']),
+          );
+          break;
     }
   }
 
@@ -496,4 +514,4 @@ function theme_commerce_price_rrp_your_price($variables) {
   }
 
   return  theme('table', array('rows' => $rows, 'attributes' => array('class' => array('commerce-price-rrp-your-price'))));
-}
\ No newline at end of file
+}
