Task Query Syntax

I have a couple of tasks with both tags #get #now…I am playing around with a dash board of sorts and want to do some excluding. So that if there are (2) tasks, I can isolate them on a list by exclusion. I tried the query below by it does not work…what am I doing wrong?

```tasks
tags include get
not done
not #now

For anyone else looking for this solution, it’s as simple as adding a line like this:

tags do not include [insert name of task here]

For anyone else looking for this solution, it’s as simple as adding a line like this:

tags do not include [insert name of task here]

So the query that worked in my particular case:

```tasks
tags include now
not done
tags do not include get
```
1 Like

I have just began to use Tasks.
That’s useful. Thank you!