How to group tasks by date and then display seperately by the file those tasks are located

TASK
WHERE contains(tags, "#next")
SORT added ASC
GROUP BY file.link

Gives me this

Can where it shows “italian game” etc instead it was grouped by DATE.
And then in each date section, tasks are grouped also by file in where these tasks are located?

I tried this

TASK
WHERE contains(tags, "#next")
SORT added ASC
GROUP BY file.link as L
SORT L asc

That didn’t do anything.

You can try this solution:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.