how to filter for a period "."

A

adgorn

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

pietlinden

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 "*.*"));
 
Top