Index: plugins/views_data_export_plugin_style_export_csv.inc
===================================================================
--- plugins/views_data_export_plugin_style_export_csv.inc	(revision 916)
+++ plugins/views_data_export_plugin_style_export_csv.inc	(working copy)
@@ -108,6 +108,7 @@
       '#options' => array (
         '' => t('No conversion'),
         'ASCII' => t('ASCII'),
+        'ANSI' => t('ANSI'),
       ),
       '#description' => t('Optionally specify a character conversion that some CSV file readers need. Note, using an external tool is always preferred and you should only use this option as a last resort. This feature requires the "iconv" PHP extension.'),
     );
Index: theme/views_data_export.theme.inc
===================================================================
--- theme/views_data_export.theme.inc	(revision 916)
+++ theme/views_data_export.theme.inc	(working copy)
@@ -117,6 +117,12 @@
               $output = $converted;
             }
             break;
+          case 'ANSI':
+            $converted = utf8_decode($output);
+            if ($converted !== FALSE) {
+              $output = $converted;
+            }
+            break;
         }
       }
       
@@ -161,6 +167,12 @@
               $output = $converted;
             }
             break;
+          case 'ANSI':
+            $converted = utf8_decode($output);
+            if ($converted !== FALSE) {
+              $output = $converted;
+            }
+            break;
         }
       }
       if (!empty($vars['options']['replace_newlines'])) {
@@ -210,6 +222,12 @@
             $output = $converted;
           }
           break;
+        case 'ANSI':
+          $converted = utf8_decode($output);
+          if ($converted !== FALSE) {
+            $output = $converted;
+          }
+          break;
       }
     }
     $vars['header'][$key] = $wrap . str_replace('"', $replace_value, $output) . $wrap;
@@ -230,6 +248,12 @@
               $output = $converted;
             }
             break;
+          case 'ANSI':
+            $converted = utf8_decode($output);
+            if ($converted !== FALSE) {
+              $output = $converted;
+            }
+            break;
         }
       }
       $vars['themed_rows'][$i][$j] = $wrap . str_replace('"', $replace_value, $output) . $wrap;
