How to combine START and DUE query??? #394
-
I would like to get all tasks "due today" or "starts today". But it seems it's impossible. Can someone help? This doesn't work:
It seems that operators like
or
doesn't exist. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 7 replies
-
Tasks does not presently support an OR operator -- consequently, its query results include only those tasks that satisfy all conditions. Could you make do with consecutive queries, as in the following?
|
Beta Was this translation helpful? Give feedback.
-
I would like to do that, but at the moment such a query (starts today) returns all possible tasks, just not the ones that are needed.
- Tasks without start
- Tasks with start
- Tasks with any start
Am 12. Nov. 2021, 01:04 +0100 schrieb therden ***@***.***>:
… Tasks does not presently support an OR operator -- consequently, its query results include only those tasks that satisfy all conditions.
Could you make do with consecutive queries, as in the following?
```tasks
not done
due today
```
```tasks
not done
starts today
```
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
-
This doesn't make sense.
When I filter all tasks starting today, I can't get all tasks without start date.
Because of that, your own solution doesn't work. I need to get all I filtered and not anything else.
Am 12. Nov. 2021, 09:35 +0100 schrieb Martin Schenck ***@***.***>:
… Please note that filtering by start date will include tasks that don't have a start date. See also here: https://schemar.github.io/obsidian-tasks/queries/filters/#start-date—You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
-
This logic lacks. A separate query like 'no start date' to get tasks you can't work on is necessary. This way you can hide tasks without start date on query starts.
Am 12. Nov. 2021, 10:44 +0100 schrieb tmartschinke ***@***.***>:
… This doesn't make sense.
When I filter all tasks starting today, I can't get all tasks without start date.
Because of that, your own solution doesn't work. I need to get all I filtered and not anything else.
Am 12. Nov. 2021, 09:35 +0100 schrieb Martin Schenck ***@***.***>:
> Please note that filtering by start date will include tasks that don't have a start date. See also here: https://schemar.github.io/obsidian-tasks/queries/filters/#start-date—You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
-
The boolean operators feature, to combine queries, was released in Tasks 1.9.0. |
Beta Was this translation helpful? Give feedback.
The boolean operators feature, to combine queries, was released in Tasks 1.9.0.
See the Documentation.