Magento 1.9 – Fix Invalid Value for ‘Visibility’ in Configurable Products CSV

configurable-productmagento-1.9

I created a spreadsheet to upload configurable products.

For the different sizes, Visibility is set to "Not Visible Individually".

The visibility setting for the parent product is "catalog,search".

Magento import keeps giving me this error:
"Invalid value for 'visibility' in rows: 1, 2, 3, 4, 5, 6, 7, 8".

What's wrong, please?

Best Answer

Magento import process support only integer values in field visibility so please use following values in filed visibility your csv file

  1. Not Visible Individually => 1
  2. Catalog => 2
  3. Search => 3
  4. Catalog, Search => 4

See here

enter image description here

Related Topic