|
You will create your product import file using a standard CSV Comma Seperated Value; this file format is a tabular data format that has fields separated by the comma character and quoted by the double quote character. file format with a header row. The basic rules for the file are: The first row of the file will be a header line containing the field name for each column. Example ProductID, Description, URL, Thumb
Following the header row, each product will be on a separate line. Example 00040-kk, My description, and more, 00040-kk.html
Leading and trailing spaces adjacent to comma file separators are ignored Each column is delimited by a comma. Fields with embedded commas must be delimited with double-quote characters. In the example above, My description, and more had to be delimited in double quotes because it had an embedded comma
Fields which contain double quote characters must be surrounded by double quotes, and the embedded double quotes must each be represented by a pair of consecutive double quotes. For Example: John "Da Man" Doe would convert to "John ""Da Man"" Doe"
Fields with leading or trailing spaces must be delimited with double quote characters. To preserve the leading and trailing spaces around the last name above: John ," Doe ",...
Fields may always be delimited with double quotes It is always safe to delimit all non-numeric fields.
You can create the file using Excel or other spreadsheet applications and save it in a CSV format, or you can use a text editor such as Notepad to create the file manually. A sample CSV File can be downloaded by clicking here. If Clicking does not work, please try to copy and paste the link into your browser.
|