Page 1 of 1

Help with quicksearch script

Posted: 15 Nov 2018 22:05
by jaywalker32
I'm having problems with the quicksearch command which started sometime after the "smart boolean" update:

This code no longer returns files with "Project" in the name, with label "Green"
It takes about 10 seconds and returns an empty result

Code: Select all

text quicksearch("Project AND (lbl:Green)","This PC");
This one works, almost instantly (without the brackets):

Code: Select all

text quicksearch("Project AND lbl:Green","This PC");
I want to use the parentheses in the script because sometimes I want to include multiple labels like (lbl:Red OR lbl:Green)

Is there a new/correct way to write this search?

Re: Help with quicksearch script

Posted: 16 Nov 2018 04:12
by jupe
adding a colon prefix should work. eg.

Code: Select all

text quicksearch(":Project AND (lbl:Green)","This PC");

Re: Help with quicksearch script

Posted: 16 Nov 2018 13:23
by jaywalker32
Ah yes, that seems to work. Thanks.