Is it possible to filter out the Completion date when displaying using taskList #989
-
I have a separate dataviewjs block to show me all the tasks I've completed today. Because it only shows today's tasks, there isn't any need to show the completion date. Is there a way to hide that portion, or really any portion of a dv.taskList call? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
I haven't added a convenience function for it yet, but you can edit the |
Beta Was this translation helpful? Give feedback.
-
I wrote this in a reply, but I thought I'd put it out here as well. The answer was, of course, regex. The following snippet will extract any tasks completed today and return them with the completion date stripped from the
Sadly this does break the ability to uncomplete the object from the the task list, which is something I don't know if I can fix. |
Beta Was this translation helpful? Give feedback.
I wrote this in a reply, but I thought I'd put it out here as well. The answer was, of course, regex.
The following snippet will extract any tasks completed today and return them with the completion date stripped from the
text
fieldSadly this does break the ability to uncomplete the object from the the task list, which is something I don't know if I can fix.