Criteria for Parameter Query

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to only have to enter partial criteria to make a query run?

For example, If I put [Enter Account Name] in the query criteria and an Account Name is ABC Contracting, is there a way to only have to enter ABC to make this account come up?

I only know of entering the entire name
 
Use something like this for the query criteria:

Like [Enter Account Name] & "*"


--

Ken Snell
<MS ACCESS MVP>

bdehning said:
Is there a way to only have to enter partial criteria to make a query run?

For example, If I put [Enter Account Name] in the query criteria and an
Account Name is ABC Contracting, is there a way to only have to enter ABC to
make this account come up?
 
Thanks Ken

Worked Great
--
Brian


Ken Snell said:
Use something like this for the query criteria:

Like [Enter Account Name] & "*"


--

Ken Snell
<MS ACCESS MVP>

bdehning said:
Is there a way to only have to enter partial criteria to make a query run?

For example, If I put [Enter Account Name] in the query criteria and an
Account Name is ABC Contracting, is there a way to only have to enter ABC to
make this account come up?
I only know of entering the entire name
 
I do not see why not, because if the system needs more information it should
prompt you on it.
 
Use the following expression in a query:

Like [Enter Account Name] & "*"

--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


kerrpmb said:
I do not see why not, because if the system needs more information it
should
prompt you on it.

bdehning said:
Is there a way to only have to enter partial criteria to make a query
run?

For example, If I put [Enter Account Name] in the query criteria and an
Account Name is ABC Contracting, is there a way to only have to enter ABC
to make this account come up?

I only know of entering the entire name
 

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