Excluding Unwanted Files #2225
Answered
by
I-Pch
datthanhdoan
asked this question in
Q&A
-
I have some files that I don't want to appear in the Table, how can I remove them? I've tried several methods as well as the one below, but it's not working.
|
Beta Was this translation helpful? Give feedback.
Answered by
I-Pch
Feb 12, 2024
Replies: 1 comment 1 reply
-
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"
~~~ |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
datthanhdoan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maybe you could try this 😊 :
or this…