Dataview Question - AND OR

Things I have tried

TABLE
	tags AS "Keywords",
	source AS "Source",
	author AS "Author"
FROM "Notes" and #Finance or #Economics
SORT file.name ASC

What I’m trying to do

I’m trying to pull just the Finance or Economic tags without Notes but once I add that or at the end, it’s just grabbing any notes in my obsidian with that tag. What can I do to make sure it’s only pulling from “Notes”?

I found that switching the FROM to below fixed it.

FROM #Finance or #Economics and "Notes"
1 Like

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