## The Daily Review Using Obsidian Bases
```base
properties:
  file.ctime:
    displayName: Created
  file.name:
    displayName: Note
views:
  - type: table
    name: Table
    filters:
      or:
        - file.ctime.date() == (today() - "7d")
        - file.ctime.date() == (today() - "1M")
        - |-
          file.ctime.day == today().day && 
          file.ctime.month == today().month &&
          file.ctime.year < today().year
    order:
      - file.ctime
      - file.name
    sort:
      - property: file.ctime
        direction: DESC
    columnSize:
      file.ctime: 215
  - type: cards
    name: View

```

## Using the Dataview Plugin
The FROM line is where I am filtering out certain folders if I don’t want those notes to appear in the results. For example, I don’t want to see my templates to appear in my daily review.
``` dataview
TABLE WITHOUT ID
 file.link AS "Notes",
 file.ctime AS "Created"
FROM -"Bible" AND -"Templates"
WHERE dateformat(file.ctime, "yyyy-MM-dd") != dateformat(date(today), "yyyy-MM-dd") AND
(
dateformat(file.ctime, "yyyy-MM-dd") = (date(today).year - 1) + dateformat(date(today), "-MM-dd") OR 
	(
	number(dateformat(striptime(date(today)), "X")) - number(dateformat(striptime(file.ctime), "X")) >= 2592000 AND number(dateformat(striptime(date(today)), "X")) - number(dateformat(striptime(file.ctime), "X")) <= 2678000
	) OR
	(
	number(dateformat(striptime(date(today)), "X")) - number(dateformat(striptime(file.ctime), "X")) > 518400 AND number(dateformat(striptime(date(today)), "X")) - number(dateformat(striptime(file.ctime), "X")) <= 648000
	) OR
dateformat(file.ctime, "MM-dd") = dateformat(date(today), "MM-dd")
)
SORT file.ctime ASC
```