I want my query to include everything but MDN and M with two numbers like M10.
I tried<> M** and<> M??, and <>M##. None of them worked.
Thanks for any help
ed
>I want my query to include everything but MDN and M with two numbers like M10.
>I tried<> M** and<> M??, and <>M##. None of them worked.
>Thanks for any help
>ed
The <> (unequal) operator does not recognize wildcards - only the LIKE
operator does. Try
<> "MDN" AND NOT LIKE "M##"
John W. Vinson[MVP]
gambler - 08 May 2005 19:10 GMT
Thanks John
It worked. I sure appreciated the help.
ed
> >I want my query to include everything but MDN and M with two numbers like M10.
> >I tried<> M** and<> M??, and <>M##. None of them worked.
[quoted text clipped - 7 lines]
>
> John W. Vinson[MVP]