
Originally Posted by
denliv
Assuming you don't have to many records to modify & you're comfortable with phpMyAdmin (if you have it on your server) you could do something like the following:
In easy poplulate pick a field you don't need or can modify without consequence & put a unique piece of data there as a marker for each record you want to modify (like a quantity of 5555 or unique date in a date field, etc). Then go to phpMyAdmin & in the products table search for all records with the unique item you entered & change the document type for all those records.
Kind of a round-about way but it'll git'er done.
Hi there, thanks for responding. This would work however I need to add just under 500 items initially then add 10-12 here and there. The 10-12 added periodically could be entered manually which bypasses my problem but I wonder about adding the first 500 via EP then running a update query which searchs for all items in category 'My Collection' and changes the products_type from 1 to 3?.
All Document General items are entered into 1 single category named 'My Collection' w/no sub directories.
Would I use something like this...
Code:
UPDATE products_type SET products_type ='3' WHERE category_id = 'My Collection Category number'
Thanks everyone
Bookmarks