diff --git a/plugins/views_data_export_plugin_style_export_xml.inc b/plugins/views_data_export_plugin_style_export_xml.inc
index 8e6d790..71be84b 100644
--- a/plugins/views_data_export_plugin_style_export_xml.inc
+++ b/plugins/views_data_export_plugin_style_export_xml.inc
@@ -28,7 +28,10 @@ class views_data_export_plugin_style_export_xml extends views_data_export_plugin
       'default' => 'dash',
       'translatable' => FALSE,
     );
-
+    $options['transform_case'] = array(
+      'default' => 'none',
+      'translatable' => FALSE,
+    );
     return $options;
   }
 
@@ -66,5 +69,17 @@ class views_data_export_plugin_style_export_xml extends views_data_export_plugin
         'edit-style-options-transform' => array(TRUE),
       ),
     );
+    $form['transform_case'] = array(
+      '#type' => 'radios',
+      '#title' => t('Transform Case'),
+      '#description' => t('Transforms the case of your labels.'),
+      '#options' => array(
+        'none' => t('None'),
+        'uppercase' => t('Uppercase'),
+        'lowercase' => t('Lowercase')
+      ),
+      '#default_value' => $this->options['transform_case'],
+    );
+    
   }
 }
diff --git a/theme/views_data_export.theme.inc b/theme/views_data_export.theme.inc
index bc69cbd..7dd5001 100644
--- a/theme/views_data_export.theme.inc
+++ b/theme/views_data_export.theme.inc
@@ -400,6 +400,23 @@ function template_preprocess_views_data_export_xml_body(&$vars) {
     if (empty($header)) {
       $header = 'no name';
     }
+
+    if ($vars['options']['transform_case'] and $vars['options']['transform_case'] != 'none') {
+      if ($header != 'no name') {
+        switch ($vars['options']['transform_case']) {
+          case 'uppercase':
+            $vars['xml_tag'][$field] = drupal_strtoupper($header);
+          break;
+          case 'lowercase':
+            $vars['xml_tag'][$field] = drupal_strtolower($header);
+          break;
+        }
+        
+        // Reset header for further transformations
+        $header = $vars['xml_tag'][$field];
+      }
+    }
+
     if ($vars['options']['transform']) {
       switch ($vars['options']['transform_type']) {
         case 'dash':
