Display certain criteria.

  • Thread starter Thread starter John
  • Start date Start date
J

John

How can I display certain criteria either in the query design or combo box.
For example. I have a list:
011Usa
012Usa
013usa
014usa
015usa

I want to show in the report only 011, 012, 013 NOT usa.

Thanks,
 
I'm not sure what your question has to do with "criteria". If you want to
only display the left 3 characters of a string, you can use the Left()
function:
Left([UnnamedField],3)
 
Ill try that, When u open up query design view it has the criteria option so
I thought mabey you can add something there.

Duane Hookom said:
I'm not sure what your question has to do with "criteria". If you want to
only display the left 3 characters of a string, you can use the Left()
function:
Left([UnnamedField],3)
--
Duane Hookom
Microsoft Access MVP


John said:
How can I display certain criteria either in the query design or combo box.
For example. I have a list:
011Usa
012Usa
013usa
014usa
015usa

I want to show in the report only 011, 012, 013 NOT usa.

Thanks,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top