Dataview Date Ranges

Hi All,

Does anyone have a few tips about Dataview? I am trying to design a query that will list all files between two dates. For example, all files that have a file.ctime between two specified dates.

Can this be done? I haven’t worked out how if it is possible.

Any help would be greatly appreciated.

Thank you.

For anyone who might want the answer to this, I worked out a solution. To list all the files from my logbook between 2022-05-01 and 2022-05-31, this query works.

LIST
FROM "Logbook"
WHERE file.day >= date(2022-05-01) and file.day < date(2022-05-31)
SORT date asc
9 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.