More than 2 “Where” parameters in Dataview Queries?

Is it possible to include more than 2 parameters in the “where” portion of a Dataview query?

So in the code below could I add to the where field another “and Scheduled = false”?

LIST 
FROM #assessmentschedule 
WHERE Next-Assessment = date(2022-02) or Semester-Scheduled = date(2022-02)
SORT file.name Asc
1 Like
```dataview
LIST 
FROM #assessmentschedule 
WHERE !Scheduled
WHERE Next-Assessment = date(2022-02) or Semester-Scheduled = date(2022-02)
SORT file.name Asc
```
4 Likes

Thank you so much. That was exactly what I needed. Learning little my little.

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