diff --git a/theme/views_data_export.theme.inc b/theme/views_data_export.theme.inc
index 23fe27d..9b124a0 100644
--- a/theme/views_data_export.theme.inc
+++ b/theme/views_data_export.theme.inc
@@ -272,6 +272,19 @@ function template_preprocess_views_data_export_xls_body(&$vars) {
 function template_preprocess_views_data_export_msoffice_body(&$vars) {
   _views_data_export_header_shared_preprocess($vars);
   _views_data_export_body_shared_preprocess($vars);
+}
+
+function template_process_views_data_export_doc_body(&$vars) {
+  // Pass through the generic MS Office process.
+  template_process_views_data_export_msoffice_body($vars);
+}
+
+function template_process_views_data_export_xls_body(&$vars) {
+  // Pass through the generic MS Office process.
+  template_process_views_data_export_msoffice_body($vars);
+}
+
+function template_process_views_data_export_msoffice_body(&$vars) {
 
   $output = '';
 
