Filter Certain records Only

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

Guest

Hi
I have continous form bound to a table directly.
Table has a field [SP] and the data include
Fx
Ld
*
CD
..
While opening the form I want form to exclude * records in the form. How
can i do that.

Thanks
Ron
 
Rony said:
Hi
I have continous form bound to a table directly.
Table has a field [SP] and the data include
Fx
Ld
*
CD
.
While opening the form I want form to exclude * records in the
form. How can i do that.

Thanks
Ron

Try indicating "*"
 
Add a criteria to the record source of the form

Select * From TableName Where [SP] <> "*"

Or
Select * From TableName Where [SP] Not In ("*")
 

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