I'm wondering if this module can update virtuemart prices using custom CSV.
Basically I have CSV that has SKU and price and I would like to update virtuemart prices if virtuemart SKU matches. CSV may have more SKUs than virtuemart, those should be ignored. (Items no longer in production/being sold).
In pseudo code it would be something like this
IF (csv.sku == vm.sku)
vm.price = csv.price
ELSE
ignore csv.sku line