-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
Description
for example there can be many skus in a csv and some skus have values for some attribute while other skus have values for other attributes
and it maybe desirable to skip setting values for attributes for one sku but set for another.
very minimal and probably not realistic example (only to explain):
sku,color,weight
red_sku,red,
no_color_sku,,0.1
now how can we skip checking and setting weight for red_sku ad color for no_color_sku? instead of trying to set empty or 0 or some default for example aka skipping entirely?
is it possible something like this?
sku,color,weight
red_sku,red,__SKIP__
no_color_sku,__SKIP__,0.1