Parameter should return 0 Records

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

I need to create a parameter query that returns "no records" if I ignore the
parameter value message box and just press ENTER w/o entering any
characters.

Does anyone know how to do this?

Thanks,
Tom
 
Presumably you've got something like

WHERE Field = [Parameter]

right now.

Try

WHERE Field = [Parameter] AND [Parameter] IS NOT NULL
 

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