Skip to content
Discussion options

You must be logged in to vote

Thanks for the reply.

Part 1

Looking at the page on Properties:
https://publish.obsidian.md/tasks/Getting+Started/Obsidian+Properties

... excludes tasks on notes that

  1. do not have the property "created" (this is a date property)

Sure, you would do that with this line, which only matches tasks in files that have a non-empty created property:

filter by function task.file.hasProperty('created')

Part 2

... excludes tasks on notes that

  1. have the property "created" equal to todays date

Assuming that your created dates are generated by Obsidian, and look like this:

---
created: 2025-11-07
---

Then you can write this to find tasks in files with today in the created value:

filter by functio…

Replies: 4 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by claremacrae
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
scope: scripting Issues to do with custom filters, custom sorting and similar scope: frontmatter Anything to do with YAML frontmatter, also known as Obsidian properties
2 participants