Page 1 of 1

How to search for tags exclusively

Posted: 25 Feb 2015 21:37
by stebobibo
I want to search for files that have a tag exclusively, i.e. do not contain any other tags. Thanks for your help!

Re: How to search for tags exclusively

Posted: 26 Feb 2015 09:57
by bdeshi
enclose tag within quotes.
you can just enter this pattern in the Name & Location box of Find Files. Or in Quick Search.

Code: Select all

prop:#tags: "You Tag Here"

Re: How to search for tags exclusively

Posted: 26 Feb 2015 18:26
by stebobibo
SammaySarkar wrote:enclose tag within quotes.
you can just enter this pattern in the Name & Location box of Find Files. Or in Quick Search.

Code: Select all

prop:#tags: "You Tag Here"
Huh, I was searching for tags with ?tags:"" before. Thanks for this. It works perfectly. :biggrin: :appl:

Re: How to search for tags exclusively

Posted: 26 Feb 2015 18:39
by bdeshi
Great.
You can also extend this exclusiveness. For example, this will find items with only tags QTY and TTY

Code: Select all

prop:#tags: "QTY, TTY" //separated by a comma and space.

Re: How to search for tags exclusively

Posted: 16 May 2015 02:03
by stebobibo
SammaySarkar wrote:Great.
You can also extend this exclusiveness. For example, this will find items with only tags QTY and TTY

Code: Select all

prop:#tags: "QTY, TTY" //separated by a comma and space.
Thanks again, Sam!