Is there a quick way to return all records for a certain field contains any character that is NOT alphanumeric?

I'm changing the rules on a field in my table, and I could pull all the records and run them through code to clean them up, but then I was wondering if there were a quick way to find just those records that need changing.

select * from Table1 where [any character in Column1] not in/like 'ABC..abc..123'

I'm guessing not, unless maybe with Regular Expressions.

This is for Access by the way.
Thanks.