update price globally

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
Hi

I have many products in my database. Is this a way that I can update the price (like rising to 10% of all prices) globally, without going to each manually changing its price.

Thanks
12 years ago
You can do it on bulk edit page. Or connect to your database and execute the following SQL command:
UPDATE [ProductVariant]
SET [Price]=[Price]*1.10
GO
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.