Magento 1 – How to Import Customers with More Than 2 Addresses

addressimportuser

I use a csv file to import customers into Magento.
This is the csv file header :

website, email, group_id, group, firstname, lastname, password_hash, billing_firstname, billing_lastname, billing_company, billing_street1, billing_street2, billing_city,billing_region, billing_country, billing_postcode, billing_telephone,billing_fax, shipping_firstname, shipping_lastname, shipping_company, shipping_street1, shipping_street2, shipping_city, shipping_region, shipping_country, shipping_postcode, shipping_telephone, shipping_fax, created_in, is_subscribed

But if the customer have more than 1 billing / shipping address, which modification have I to do on the header ?

Best Answer

I don't think you need to modify the headers, you can just the extra shipping/billing address on a line after the primary shipping/billing address but you will simply need to include the commas for all other header details that are before and after the address details eg ",,,,City name, Telephone, etc..,,,,"

If your editing the csv file on excel(which isn't recommended) you can just add the address details for all address headers on the row below the row with the primary address details and leave all other details blank

Related Topic