Monday, October 27, 2014

CSV File to Excel XLS



Open the CSV File
When you select the option to open a file in Excel, you will see the option Text Files that includes CSV files. The CSV file has an icon indicating that it is supported by Excel. This is the fastest method and the default action when you double click on a CSV file, although it does not work with all CSV files.

excel2010-file-open-csv
Open file in Excel 2010
excel2010-open-dialog-csv
Open file of CSV type in Excel 2010
Depending on the CSV file contents and the regional settings configuration of Windows, the data in the CSV file may not show correctly in Excel. The most common errors are:
- data is shown on a single column
- date columns are shown as text
- text columns containing only numbers are treated as number with leading zero removed
- currency values treated as text
Download the file advanced-csv-sample.csv to reproduce some of these errors.
excel2010-csv-format-error
CSV data incorrectly formatted: Order ID without leading zeroes and Order Date and EUR Amount as text instead of date and number
Open the CSV file in Notepad and notice that the leading zeroes in the Order ID field were removed by Excel. The Order Date value in the date format YYYYMMDD (year, month and day) wasn’t automatically recognized. Neither was the Amount in EUR value because this computer is configured to use period as decimal symbol. Both values appear as text instead of their correct formats, limiting the use of the data.
Use the Text Import Tool described below to mitigate these errors.
Import CSV File using Excel Text Import Tool
Click the Data tab on the Excel ribbon, then click the Get External Data option and select From Text on the popup menu, as shown below:
excel2010-get-external-data-text
Get External Data From Text function on Data tab
Select the CSV file to import with the Import Text File dialog and click Import button:
excel2010-external-data-open-csv
Use Import Text File dialog to open CSV file
Define the import settings (step 1 of 3). The contents of the file are shown, notice the use of comma to separate values and double quotes enclosing the EUR amount value because it contains a comma. Keep the data type as delimited to configure the delimiter in the next screen. You may need to change the File Origin to Windows (ANSI) depending on the file contents. Change it only if you notice weird characters in the processed data.
excel2010-text-import-wizard-1
Configure CSV file as delimited
Define the import settings (step 2 of 3). Select the right separator, comma in this example, to show the values into columns.
excel2010-text-import-wizard-2
Configure delimiter of CSV file with data preview
Define the import settings (step 3 of 3 – part 1). Review and if necessary change the data format of each column. As the column Order Id contains only numbers Excel treats it as number and removes the leading zeros. If we change the column data format to text Excel will not change its contents.
excel2010-text-import-wizard-31
Configure data format for text value in CSV file
Define the import settings (step 3 of 3 – part 2). Excel recognizes some date formats. If it does not, change the data format manually defining one of the supported formats. In the example we change the column Order Date to the right format. YMD means that the date is in the format Year – Month – Day.
excel2010-text-import-wizard-32
Configure data format for date value in CSV file
Define the import settings (step 3 of 3 – part 3). Sometimes even number columns need to be configured. In this example the Amount EUR column is using a different decimal symbol than the system’s configuration. To configure these cases, keep the data format as General, click the Advanced button and configure the decimal and thousands separators used in the column.
excel2010-text-import-wizard-33
Configure data format for amount value in CSV file
Define the destination of the imported data. After you finish configuring the wizard, Excel opens the Import Data dialog asking where to put the results. Select the proper location but do not click the OK button yet, as there is still one step left.
excel2010-text-import-data-sheet
Import Data dialog to define where to put the imported data
Click the Properties button to define the properties of the import process, so it can be used more times without the need of reconfiguring everything:
Query Definition
Keep it checked to save the import configuration (delimiter, column formats)
Refresh Control
The refresh control defines if the sheet will be automatically refreshed, if the file name changes and if the sheet should be refreshed and emptied when opened or closed. Uncheck the “Prompt for file name on refresh” option if the file always have the same name and location.
Data formatting and layout
Normally nothing to change
If the number of rows in the data range changes upon refresh
This configuration depends on the source file, if it always contain all data use the overwrite option, the insert options will move existing data down and load the new data above it
Fill down formulas in columns adjacent to data
Check this option if the sheet contains columns with formulas alongside imported data. Its recommended to use another sheet to process the imported data.
excel2010-external-data-range
External Data Range Properties dialog to define where to put the imported data
Click OK to close the External Data Range Properties dialog and click OK to close the Import Data dialog and import the data on the selected destination. If the data is formatted correctly, save the sheet.
excel2010-csv-format-right
CSV file imported with data formatted correctly
To refresh the data, importing a new file with the same format, click on any of the cells that holds data of a previous import. Then on the Data tab, click on the Refresh All Icon or the Refresh All option on its popup menu.
excel2010-text-import-data-refresh
Refresh All function to import CSV file again and refresh data

No comments:

Post a Comment