What I’m trying to do
I want to query my notes in Obsidian using the Dataview plugin to list only the note with ATLAS_: Home
and SOURCE_: Budget
, excluding notes with SOURCE_: Budget List
.
Things I have tried
-
Query using
contains
:LIST WHERE contains(ATLAS_, "Home") AND contains(SOURCE_, "Budget")
This returns both notes with
SOURCE_: Budget
andSOURCE_: Budget List
. -
Query using exact match:
LIST WHERE ATLAS_ = "Home" AND SOURCE_ = "Budget"
This returns no results. I need help with writing the correct query to only show
ATLAS_: Home
andSOURCE_: Budget
.
Thank you for your help.