Magento – Magento 2 Product Import Problem

import-productsmagento2visibility

I got an Error on Magento 2 Product Import – which says:

  1. Value for 'visibility' attribute contains incorrect value, see acceptable values on settings specified for Admin in row(s): 1
  2. Invalid value in Store column (store doesn't exist?) in row(s): 1

But in the Store column I has the value 0 and in the visibility, the value 4 for Catalog, search so I don't know why that's wrong ?!

Does any have an idea?

Best Answer

In Magento 2 product can't be imported if attribute set is absent in system.

You will receive next error after Data Validation:

Invalid value for Attribute Set column (set doesn't exist?) in row(s): x

You have to create attribute set manually in Admin Panel or via API request.

See: Attribute Set REST API

Related Topic