Page 1 of 1

Searching - Exact Match or Boolian

Posted: Sun Feb 11, 2018 12:38 pm
by Kernos
Is there a way to do an exact match of a string in a field? For example I have several Titles which are "V", hard to find easily. I tried =V, which did not work.

Also can one use Boolean operators. It should be possible with a MySQL database.

Thanks,

Bill

Re: Searching - Exact Match or Boolian

Posted: Sun Feb 11, 2018 3:19 pm
by Conor
The words in the filter field are used in an "and" search, to switch to bolean add "or". You can group words for exact match of a group of words with quotes.

Cats Dogs = cats AND dogs
Cats or Dogs = cats OR dogs
"Cats Dogs" = cats dogs