I’m having trouble trying to more precisely filter out my nested tags within the program. I’ve nested my tags so that it would be significantly easier for me to grouped into nested tags so that I can better organize my rags. However, I that’s prevented me from selecting only tags in that upper nested tag without selecting everything else below it. How can I resolve this??
I’m not clearly understand where you want to limit this search, but in general the trick wound be to search for #my/nested/tag and add an exclusion search for #my/nested/tag/.
Following from @holroy, the specific thing that I would be looking for would be looking for, a type of exclusion search. I’m not sure why but it is not working or registering on my end so I’m uncertain if I’m handling the syntax wrong because the extra slash is not adding anything to my searches. For context, these are the nested tags that I am specifically trying to isolate from
Note: The Parenthesis are only for Identification, they are not a part of the filter itself
I the case of filtering the view, I want it want it to be that I only have the files that specifically contain the “tag:#_Directory/_Navigation_Areas/Area” and nothing else, but because notes with the “tag:#_Directory/_Navigation_Areas/Area/Sub-Area” tag are nested below, it also filters to group that unintentionally.
When I attempt add the exclusion tag with the slash at he end “tag:_Directory/_Navigation_Areas/Area/” nothing shows as all of the files with that tag aren’t even filtered.
When I do revert the addition of the forward slash and add the hyphen in front of the filter, “-tag:#_Directory/_Navigation_Areas/Area”, now everything flips and everything other than the tags that I wanted are highlighted
The search operator tag: looks for tags. There are no tags that end with a forward slash.
The trick here is that you can only exclude individual tags with the search operator tag:. If you want to exclude a pattern, you need to search for text.
In your example, you could explicitly filter out all subtags individually:
Gotcha, thanks for all the in depth explanations. I’ll just revert the nesting inside so that would specifically be specifying each of the tags instead. The main point for me putting all the hierarchy was to group together the navigation pages that lead over to all the other navigation pages. Regardless, all of this information is extremely useful for other applications moving forward!