Show only certain text in a query

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi!
I have a field in a table that can have 200 characters.

I want to run a query that will show me all the records in that field that
have more than 40 characters in that field.


Thanks
 
Use a where clause of something like:
WHERE Len([YourField])>40
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top