If possible in IQ (as it is in Ecco), how do I set a grid to automatically show items which contain particular key words?
Comments
Almost anything is possible.
My first question would be "Where are your keywords"?
But regardless of that, you could certainly include a filter like this in a sourceless grid**(i.e. : erase the source filter) to search all text fields in general (not as efficient as searching a few fields in particular, but it does the job well):
textfields like "*keyword1*" AND textfields like "*keyword2*" (etc.)
or, depending on how you want to search :
textfields like "*keyword1*" OR (textfields like "*keyword2*" AND textfields like "*keyword2*" ) (etc.)
or whatever logic you're after...
That's a start, but there are other possibilities.
If you haven't yet, you could also have a look at the Help file (F1), especially that section :
Comments