Filtering base fore recent notes

I just LOVE this community! Great suggestions. Thanks for taking what I had and running with it @PaulDickson @dawni @symph0nic !

Here’s what I’ve settled on for now:

My daily note embeds this .base note, with the view specified:

![[Table of modified on date in title of daily note.base#Today’s modifications]]

The elements that I include are the TIME of modification (I don’t need the day, since that’s in the title of the Daily Note). But I do like to have the Created and the Folder columns, for context. This gives me a really useful chronological overview of the day.

Thanks!

formulas:
  Modified: date(file.mtime)
  ModTime: time(file.mtime)
  Created: date(file.ctime)
display:
  formula.Modified: Modified
  formula.Created: Created
views:
  - type: table
    name: Today's modifications
    filters:
      or:
        - dateEquals(date(file.ctime), dateModify(this.file.name, "-0 days"))
        - dateEquals(date(file.mtime), dateModify(this.file.name, "-0 days"))
    order:
      - file.name
      - formula.ModTime
      - formula.Created
      - file.folder
    sort:
      - column: formula.ModTime
        direction: ASC
    columnSize:
      file.name: 616
      formula.ModTime: 131
      formula.Created: 131
      file.folder: 607
2 Likes