Nevermind... I discovered the len() function!
Thanks!
> In a query, is there a criteria that will count the number of characters in a
> field... For instance...
>
> Show me records w/ less than 6 characters in FieldA...
>
> Thank you!!
Try len(trim([your field]))
Then, in the criteria cell: <6
Bob
>In a query, is there a criteria that will count the number of characters in a
>field... For instance...
>
>Show me records w/ less than 6 characters in FieldA...
>
>Thank you!!
John Spencer - 20 May 2008 13:02 GMT
As an alternative, you can use
WHERE SomeField NOT LIKE "??????*" Or SomeField is Null
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
> Try len(trim([your field]))
>
[quoted text clipped - 8 lines]
>>
>> Thank you!!