Filter data in tables. (Arvin Meyer)

P

Pitt

I'm using Arvin Meyer's Document Manager in a db that I contructed. Does
anyone know of a means to filter the data in the tables to return only the
information who's criteria is specified in a text field?

The Document Manager is great but its difficult to locate specific
information. I would like to be able to enter a few characters or the whole
name of the specific information that I need. Upon entering this information,
only those results that match my search is returned in table as opposed to
displaying everything.

Any help would be great.
 
K

KARL DEWEY

Use a query for your data source. Use the following for criteria --
Like [Enter search data] &"*"
This allows you to enter the start of the information. Or use --
Like "*"& [Enter any part of search data] &"*"
This allows you to enter any part of the information.
 
Top