What is the correct format to declare a multiple “Not Equal” criteria?
I’ve made a sample table that contains one field named “Color”
I’m querying the field using criteria of Not "Blue" Or "Red"
The query result only excludes the value “Blue” the value “Red” remained.
What an I doing incorrectly?
SELECT tblColor.Color
FROM tblColor
WHERE ((Not (tblColor.Color)="Blue" Or (tblColor.Color)="Red"));
Thanks for any help with this
--Dave
I’ve made a sample table that contains one field named “Color”
I’m querying the field using criteria of Not "Blue" Or "Red"
The query result only excludes the value “Blue” the value “Red” remained.
What an I doing incorrectly?
SELECT tblColor.Color
FROM tblColor
WHERE ((Not (tblColor.Color)="Blue" Or (tblColor.Color)="Red"));
Thanks for any help with this
--Dave