how to filter for a period "."

  • Thread starter Thread starter adgorn
  • Start date Start date
A

adgorn

I want to right click filter a column to exclude all items that have a period
in them.
 
Figured it out from a previous answer by Mr. Vinson. Use Not Like *[.]*

Thanks!
 
I want to right click filter a column to exclude all items that have a period
in them.  

SELECT Patient.FirstName, Patient.LastName
FROM Patient
WHERE (((Patient.LastName) NOT Like "*.*"));
 

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