What I’m trying to do
I am trying to create a table listing all my notes with categories showing the processing that still needs to be done.
Right now I have a checklist at the bottom of each note that lists the tasks where I mark them off when done. What I want is a table listing all the notes with the information from those checklists entered in so i can see at a glance which notes need what work. I also want the ability to expand or retract this table as needed as I refine the tasks that need to be done on when processing each note.
Here is a mock up of what I’m talking about. I’d like the notes column to contain a link to the note in question.
It might be nice to list instead of an X maybe the date that task was crossed off? If that’s too complicated its not a deal breaker.
Things I have tried
I saw this table elsewhere on the forums but I’m not sure how to adapt it correctly. It seems to break if I add more than six categories. I haven’t even tried linking it to the notes themselves.
TABLE WITHOUT ID
upper(dateformat(dDate, "cccc")) AS Note,
choice(rows.T.completed[0], "🟢", "❌") AS Titled,
choice(rows.T.completed[1], "🟢", "❌") AS Dated,
choice(rows.T.completed[2], "🟢", "❌") AS Corrected,
choice(rows.T.completed[3], "🟢", "❌") AS Revised,
choice(rows.T.completed[4], "🟢", "❌") AS Hyperlinked,
choice(rows.T.completed[5], "🟢", "❌") AS Headings,
choice(rows.T.completed[6], "🟢", "❌") AS RevisionDated
FROM "your-folder-path"
FLATTEN file.tasks as T
GROUP BY dDate
SORT dDate ASC
If its not obvious yet I know nothing about programming, I’m kind of learning on the fly here. Any help would be appreciated!
