Dataview of all pages matching a tag but not already linked to the current page

I have simple dataview that will show all pages with a particular tag. What I want to do though is have that table exclude any pages linked on the current page. I’m using the dataview table as a type of log of pages that I haven’t processed yet.

dataview
TABLE file.mday AS "Last Modified" FROM #mytag 

How would I get a list of pages mentioned on the current page, and then exclude them from the dataview table?

Maybe with this

TABLE file.mday AS "Last Modified"
FROM #mytag"
WHERE !contains(file.inlinks, this.file.link)

But I’m not sure about your goal and if this is one is also valid:

TABLE file.mday AS "Last Modified"
FROM #mytag AND -outgoing([[]])
3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.