Filtering.

  • Thread starter Thread starter Austin Powers
  • Start date Start date
A

Austin Powers

I exported my Outlook calendar to an Access file. the file has field such
as Start date, End date, Description, and Categories etc.

The category field has date such as:

Massachusetts;Real Social Dynamics;Boston;USA
Lair Meeting;Las Vegas;Nevada;USA
DocAndWriter;Japan;Tokyo
New York;New York City;PickUp 101;USA

I'd like to be able to create a filter that will show, for example, all the
records that have "USA' in them, or 'USA' and 'Las Vegas'.

How might you suggest I go about this?

Thanks.
 
I exported my Outlook calendar to an Access file. the file has field such
as Start date, End date, Description, and Categories etc.

The category field has date such as:

Massachusetts;Real Social Dynamics;Boston;USA
Lair Meeting;Las Vegas;Nevada;USA
DocAndWriter;Japan;Tokyo
New York;New York City;PickUp 101;USA

I'd like to be able to create a filter that will show, for example, all the
records that have "USA' in them,

[Category] LIKE "*USA*"

or 'USA' and 'Las Vegas'.

[Category] LIKE "*USA*" AND [Category] LIKE "*Las Vegas*"

(which may well pick up a reference or two to Las Vegas, New Mexico or
even the tiny Las Vegas, California)


John W. Vinson[MVP]
 

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