How can I print all data that contains a required single word not.

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

Guest

How can I print all data that contains a required single word not the whole
field.

We want to extract the whole data that contains our required word, the
FILTER option can be used but it fiters the data by Whole Field but not by
the single word.

We want to filter the data by a single word and print them out.

Please reply soon...
 
It sounds like you want something like:

select <data value> from <your table>
where <data value> LIKE "%" & [Word To Match] & "%"

This will look for data that contains anything before and after the specific
word that you want to match and returns the entire value. In the QEB, specify:

LIKE "*"&[Word To Match] & "*"

on the Criteria line for the field.
 

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