What I’m trying to do
Hello! I am trying to create a Dataview table that will list me the pages containing the most words from year 2023 only.
Here are the properties:
---
date_created: JJ/MM/YYYYY
date_modified: JJ/MM/YYYYY
est-Chars: number
est-Words: number
---
Properties help me track the creation date of a page (sometimes I create a blank page for later as a reminder, I do not consider it the real creation date so I need to track it) and the modification date (by “modification” I mean the last real impact on the page, not just correcting a typo).
Things I have tried
I’ve spent quite a while on the forum and online, but I did not find a Dataview query that could me achieve that. Here is my try at this, it is incomplete as I can’t edit “date_created” into a query meaning “2023 only” :
```dataview
TABLE est-Words, est-Chars, date_created AS "2023"
FROM "PROJECTS"
SORT est-Words DESC
LIMIT 20
Thanks for any help!