Is there an option to limit import to only one directory in shop
Is there an option to limit import to only one directory in shop
1 Answer
Hello Tomi,
Import Wizard allows using the SQL expression which will apply the imported product price only if it belongs to a certain category.
You may use the following SQL expression applied to Price field:
CASE
WHEN [CSV_COL(5)] 'Category name' THEN [CSV_COL(6)]
ELSE ''
END
Where 5 is a number of Category column and 6 is a number of Price column.