Searching for " in records

D

Dorothy Bryant

I need to pull out any records that contain " in them, how
do I search for these records. Access will not allow me
to use brackets or wildcard. Any ideas???

Thanks
Dorothy
 
F

fredg

Dorothy said:
I need to pull out any records that contain " in them, how
do I search for these records. Access will not allow me
to use brackets or wildcard. Any ideas???

Thanks
Dorothy
Dorothy,

WHERE InStr([FieldName],"""")>"0"
 
Top