Just for completeness, here you can add the export option "CSV-ANSI". You need to add the tag "OverrideNames" so that you do not get duplicate "CSV". Since I'm in Australia, I needed to add the "en-AU" parameter, you can remove it if you don't need it (or replace it with your own language).
<Extension Name="CSV-UTF8" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering"> <OverrideNames> <Name Language="en-US">CSV (UTF8)</Name> <Name Language="en-AU">CSV (UTF8)</Name> </OverrideNames> </Extension> <Extension Name="CSV-ANSI" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering"> <OverrideNames> <Name Language="en-US">CSV (ANSI)</Name> <Name Language="en-AU">CSV (ANSI)</Name> </OverrideNames> <Configuration> <DeviceInfo> <Encoding>ASCII</Encoding> </DeviceInfo> </Configuration> </Extension>
source share