List all pages, and display potential tasks in a column

I would like to make a table with a link to all the files with a #tag in the first column, and in a second column have a list of tasks in the file. If there is no tasks in a file with the appropriate #tag it would still show in the table.

I have tried the following dataview code, but it doesn’t show files that has no tasks.

table without id

file.link as "File",
T.text as "Action"

from #tag
flatten file.tasks as T
where T.text & !T.complete

Do you know how I could accomplish this?

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