Embedded base with filter by Daily Notes

What I’m trying to do

I want to embed a Base in my Daily Notes that filters for all notes that were created or modified on the specific date. I am trouble using the formula because my Daily Notes are in the format ‘December 10th, 2025’.. what formula shall I use for that?

Things I have tried

I tried this but it doesn’t work
formatDate(file.ctime.date(), “MMMM Do, YYYY”) == formatDate(this.file.name(), “MMMM Do, YYYY”)

This could possibly work :woman_shrugging: :blush:

file.ctime.format("MMMM Do, YYYY") == this.file.basename

There’s no formatDate() or name() functions in the base function list

Do you really depend on the date in the file name?

If the creation and modification dates of the files are sufficient you could use:

file.ctime == this.file.ctime.date()
and
file.ctime == this.file.mtime.date()

in a filter group with OR to display all files which where created or modified on the date on which the file the base is embedded in was created.