Hello everyone, I use [ ]
to indicate general tasks, and use [>]
to mark tasks that will be done a long time later. Like this
- [ ] task1
- [>] future task2
Now I want to show them separately, I tried dataview like this
TASK
WHERE !completed
and !contains(text, "[>]")
to show general task exclude future task. But it doesn’t work.
I found that it may be because the text
field only contains the part that can be displayed. For example, text
of - [ ] task1
is task1
.
What is the field name for dataview to get the entire line string?
Thanks.