Things I have tried
Using dataview, I’ve tried to annotate my tasks as follow:
- [ ] [Task:: Main Task Name][Priority:: 3]
- [ ] Sub-task 1
- [ ] Sub-task 2
Then I’m listing my “Task” with:
task where Task
sort Priority asc
group by null
is there any way to avoid sub-tasks being shown?
What I’m trying to do
I’m trying to list out all the main tasks (no sub-tasks) sorted by priority
If removing the sub-task is not possible, would it be possible to have them folded onto the main task?
The result should look something like:
Priority 1 - Main Task C - File Name
Priority 3 - Main Task B - File Name
Priority 6 - Main Task A - File Name
Any help appreciated!
Thanks!