Skip to content

List all bullet points from a certain date while ignoring the year, i.e. for "today last year" retrospectives

List bullet points from dailys of a specific date without year

Basic

LIST file.lists.text
WHERE dateformat(file.day, "MM-dd") = "02-17"

Variants

Description of Variant A - what does it differently? What do we achieve with that?

Usage in dailies

When used in a daily and your dailies are named in format YYYY-MM-DD, the part AND file.day.year != this.file.day.year will filter out the bullet points of the daily currently open. In the case of this example file it doesnt do anything, though. See 2022-02-17 for a working example.

LIST file.lists.text
WHERE dateformat(file.day, "MM-dd") = "02-17" AND file.day.year != this.file.day.year