Skip to content

Instantly share code, notes, and snippets.

@pborenstein
Created August 24, 2025 03:09
Show Gist options
  • Save pborenstein/8742883609e548f6c43fae973c36b932 to your computer and use it in GitHub Desktop.
Save pborenstein/8742883609e548f6c43fae973c36b932 to your computer and use it in GitHub Desktop.
Obsidian Bases sheet for listing files created in last 15 days, excluding daily bites
properties:
  file.name:
    displayName: note
  file.tags:
    displayName: tags
views:
  - type: table
    name: Table
    filters:
      and:
        - '!file.tags.contains("#daily")'
        - file.ctime >= today() - "15d"
    order:
      - file.name
      - file.tags
    sort:
      - property: type
        direction: ASC
      - property: file.mtime
        direction: DESC
    columnSize:
      file.name: 250
      type: 40
      file.tags: 200
    rowHeight: medium

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment