Inverse search

Hi all,
There some tip to perform an inverse search. I have some assets that were inserted by users and lots of other loaded by the Excel Batch Uploader, these loaded assets are tagged with "automatic_load", I'd like to search the assets that not are loaded automatically. Is there some way to do that?
There some tip to perform an inverse search. I have some assets that were inserted by users and lots of other loaded by the Excel Batch Uploader, these loaded assets are tagged with "automatic_load", I'd like to search the assets that not are loaded automatically. Is there some way to do that?
One answer

It's a bit tricky, but it's possible. The format is
* NOT _fTag(/automatic_load)
The query says everything (the *) that is not tagged with automatic load. The format for the tag is to insert a '/' as the first character, lowercase all of the characters in the tag, and replace spaces with underscores. For example, the query for everything not tagged with 'My Tag' would be
* NOT _fTag(/my_tag)
* NOT _fTag(/automatic_load)
The query says everything (the *) that is not tagged with automatic load. The format for the tag is to insert a '/' as the first character, lowercase all of the characters in the tag, and replace spaces with underscores. For example, the query for everything not tagged with 'My Tag' would be
* NOT _fTag(/my_tag)