mdemarte
Computer Wizard
- Local time
- Today, 22:52
- Joined
- May 8, 2001
- Messages
- 138
I tried looking up Exclude data, but did not find what I need. I need to exclude pieces of equipment where the model equals snowmobile, or starts with atv or has the word trailer in it. Here is the query that I have created. Why doesn't it work?
SELECT tblADMEQUIP.MODEL
FROM tblADMEQUIP
WHERE (((tblADMEQUIP.MODEL)<>"snowmobile" And (tblADMEQUIP.MODEL)<>"atv*" And (tblADMEQUIP.MODEL)<>"*trailer*"));

SELECT tblADMEQUIP.MODEL
FROM tblADMEQUIP
WHERE (((tblADMEQUIP.MODEL)<>"snowmobile" And (tblADMEQUIP.MODEL)<>"atv*" And (tblADMEQUIP.MODEL)<>"*trailer*"));