Excel 2010, opening a .csv file.
The file is created in a COBOL program and received thru email.
My incoming file looks like this:
First line is column headings.
My problem: I cannot find a way to retain the leading zero in the customer field (0123456).
Unless I add an apostrophe to indicate it's a text field.
Changing customer numbers to exclude leading zeroes is not an option.
When received in email as a .csv file, the apostrophe is visible in the spreadsheet, unlike the display when manually typed.
Does anyone know how I can format the incoming file to retain the leading zeroes without showing the apostrophe?
Randy
The file is created in a COBOL program and received thru email.
My incoming file looks like this:
Code:
"Company","Department","Customer","Sales","Salesman"
"Walmart","Shoes","0123456",0001.23,","Jones"
First line is column headings.
My problem: I cannot find a way to retain the leading zero in the customer field (0123456).
Unless I add an apostrophe to indicate it's a text field.
Changing customer numbers to exclude leading zeroes is not an option.
When received in email as a .csv file, the apostrophe is visible in the spreadsheet, unlike the display when manually typed.
Does anyone know how I can format the incoming file to retain the leading zeroes without showing the apostrophe?
Randy