Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Wild Card symbol

Status
Not open for further replies.

rhonda11

Technical User
Nov 4, 2002
96
US
Does anyone know how to create a query that'll show me all records except a specified range? For example, I have a report that'll give me all project name, however, I what the report to eliminate a project name that start with "AES".

Thanks
 
Use the Query Builder and in the criteria section put in something like this:

Not Like "AES*"

The SQL version of the WHERE clause would look something like this:
WHERE (((YourFieldName) Not Like "AES*"));
 
Thank you so much, that works out great!

Happy New Year
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top