Sort Tasks based on completion status #1298
-
Hello, presume I have a task query such as the following:
How would I sort the tasks within each file's group by completion? I thought I already did this kind of sorting before at some point, but going through all my queries so far that is apparently not the case. I am pretty sure it is possible, but as I cannot figure it out I am asking here. Or maybe I am just missremembering stuff. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Try TASK
FROM #Internship
WHERE contains(text,"#todo")
SORT completed
GROUP BY file.name |
Beta Was this translation helpful? Give feedback.
Try