G
Guest
I have a text field. How can I find records with only alphabetic characters
in it?
Thanks
in it?
Thanks
I have a text field. How can I find records with only alphabetic characters
in it?
Thanks
Doug said:I have a text field. How can I find records with only alphabetic characters
in it?
Marshall Barton said:Doug said:I have a text field. How can I find records with only alphabetic characters
in it?
Note that the ! should be after the [
Doug F. said:Thank you both.
This T2 field could be eg 'SK'. The criterion worked (found error) for :
'S%' and 'S3' but not for 'S '. Thoughts?
Thanks.
Marshall Barton said:Doug said:I have a text field. How can I find records with only alphabetic characters
in it?
Note that the ! should be after the [
Thank you both.
This T2 field could be eg 'SK'. The criterion worked (found error) for :
'S%' and 'S3' but not for 'S '. Thoughts?
I might have:
'SK' which is valid data, both alpha
'S%' % not alpha
'S3' 3 not alpha
'S ' space not alpha
I want my query to bring back 'S%', 'S3' and 'S '.
The Len is 1, so the field has only "S", even if I enter S and a space. The
truncation of trailing spaces *is* important. Thanks for the noodling.