How to set query criteria based on # of characters in a field

russi

Registered User.
Local time
Today, 07:55
Joined
Jul 18, 2000
Messages
385
Maybe it's the day's 'brain drain', but I need to set a criteria in a query whereby it will select answers in a field that are a specific number of characters in length.
i.e., answers that are 5 digits long (without knowing any of the digits)

Russ
 
Select ...
From ...
Where Len(YourField) = [enter length];
 
Thanks, Pat!

I'll try that.

Russ
 

Users who are viewing this thread

Back
Top Bottom