<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<Styles>
<Style ss:ID="sNumber">
<NumberFormat ss:Format="0"/>
</Style>
</Styles>
<Worksheet ss:Name="ProgressTalk.com">
<Table>
<Column/>
<Row>
<Cell><Data ss:Type="String">Tracking</Data></Cell>
</Row>
<Row>
<Cell ss:StyleID="sNumber"><Data ss:Type="Number">653815000001</Data></Cell>
</Row>
</Table>
</Worksheet>
</Workbook>
You say in your title you're exporting to csv. That being the case, then yes, this is an Excel issue, not Progress. Open the csv in a text editor and you'll see your values are correct. Another gotcha with csvs and Excel is that Excel will strip leading 0's from numbers. That particular one can be a nightmare if you then save off the csv from Excel. As a rule of thumb, never edit csvs and save them off in Excel if you're worried about the formatting of the data.