Hello
I’m new here and with Obsidian too. My English is not so good so be simple, and if you are French it’s Wonderfull !
I just try to see tasks of one folder with 2 conditions. The first one is ok (.where (t => !t.completed)) and woks good.
The second one doesn’t wok. I get no error but no result ! (.where (p => p.Statut === “En cours”)) Statut is a property and I should have one result with both 2 conditions, but I have not.
Things I have tried
dv.header(4, 'Tâches non complétées dans "MES PROJETS"');
dv.taskList(dv.pages('"Serge/2-MES PROJETS"').file.tasks
.where (p => p.Statut === "En cours")
.where (t => !t.completed))
I tried =, I tried == , I tried === (I see it on the forum !)
Within javascript context the = is used for assignment of values. The == checks for equality, and the === is an even stricter equality checks.
So the question becomes that of how is Statut defined in one of your tasks. Or if on the note level, whether it’s a single value property or a list of values. In the latter case you need to do something like p => contains(p.Statut, "En cours"). But it all depends on how you’ve defined Statut.
But that file is not in the folder that your query is referring to? So is there a file in that folder which actually has this property set to that value? Which also has non-completed tasks?
It’s most likely due to Statut being a file property, and not a task property. So if you change the order of your query it’ll most likely be OK. Try the following:
```dataviewjs
dv.header(4, 'Tâches non complétées dans "MES PROJETS"');
dv.taskList(dv.pages('"Serge/2-MES PROJETS"')
.where (p => p.Statut === "En cours")
.file.tasks
.where (t => !t.completed))
```