Close Actinic and then run the following SQL query on the Actinic Database.
DELETE NewProducts.*
FROM NewProducts LEFT JOIN Product ON NewProducts.sProductRef = Product.[Product Reference]
WHERE (((Product.[Product Reference]) Is Null));
This will clear the list and allow you to recreate it once you are back in Actinic.
DELETE NewProducts.*
FROM NewProducts LEFT JOIN Product ON NewProducts.sProductRef = Product.[Product Reference]
WHERE (((Product.[Product Reference]) Is Null));
This will clear the list and allow you to recreate it once you are back in Actinic.
All help appreciated as ever.
Comment