Skip to content

Excluding Unwanted Files #2225

Answered by I-Pch
datthanhdoan asked this question in Q&A
Feb 4, 2024 · 1 comments · 1 reply
Discussion options

You must be logged in to vote

Maybe you could try this 😊 :

~~~dataview
TABLE length, Note-Status, file.inlinks AS "Mentions"
FROM #unity-notebook
WHERE !contains(list("Unity-Template", "Unity Note Book"), file.name)
~~~

or this…

~~~dataview
TABLE length, Note-Status, file.inlinks AS "Mentions"
FROM #unity-notebook
WHERE file.name != "Unity-Template" AND file.name != "Unity Note Book"
~~~

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@datthanhdoan
Comment options

Answer selected by datthanhdoan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants