Given the following field and entries, how to I find the 3 entries that have a non-numeric character within the last 4 letters?
Field1
------
MA1234
DC4567
OHABCD
CAWXYZ
FLLMNO
MI9876
I'm guessing it would be a combination of Right
and Like "[A-Z]*"
, such as Right([Field1], 4) = Like "[A-Z]*"
but that doesn't work.
EDIT: I'm looking for any entries where any of the last 4 characters is non-numeric.
Thanks!