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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ACCESS 2002 2

Status
Not open for further replies.

Cia2a

Technical User
Aug 8, 2000
23
0
0
US
I want to extract only the records that meet certain criteria. I have a field "Priority" that has a look up for
1 Mission Critical
2 Mission Impact
and 3 others.
How do I write my query to extrapolate only one of these criteria.?

Thanks
 
Try this.

Type "Mission Impact" or Mission Critical" or "..." etc,in the criteria section under the field which contains the data that you wnt to select from.
 
cia2a,

This is a sample SQL statement for a query finding a value of priority =1 with a table name of Table3:
SELECT Table3.priority FROM Table3 WHERE (((Table3.priority)=1));

Hope this helps.
 
Thanks Gang that was superb.
Now how do I attach it to the report form?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top