Current SQL in a cbo query builder:
Code:
SELECT Product.Product, Product.Target
FROM Product
WHERE (((Product.Product) Not Like (([Product].[Product])="#5 ct CDW" And ([Product].[Product])="#5 ct HSD"
And ([Product].[Product])="## ct HSD (Scrubby)" And ([Product].[Product])="42 ct HSD" And ([Product].[Product])="Chassis" And ([Product].[Product]) Like "7th G*")));
I do not want these products to appear on a combo box I have (the product name is either ambiguous or no longer run but do not want to delete and lose data connected). I am eliminating options for the user so they do not select these products that we don't use. However this SQL is not doing the trick. I still see all the options in the combo.