Diary Entries

Memories

Diary Entries

On This Day

formatDate(prop("Date"), "D/M") == formatDate(now(), "D/M") and formatDate(prop("Date"), "L") != formatDate(now(), "L")

formatDate(prop("Date"), "D/M") == formatDate(now(), "D/M")

Checks to see if Date formatted as D/M matches the current date formatted as D/M.

formatDate(prop("Date"), "L") != formatDate(now(), "L")

Checks to see if Date formatted as MM/DD/YYYY matches the current date formatted as MM/DD/YYYY.

... and ...

If both of the above return true then display a checked box.

Years Ago

(dateBetween(now(), prop("Date"), "years") > 0) ? (format(dateBetween(now(), prop("Date"), "years")) + " years ago") : ""

(dateBetween(now(), prop("Date"), "years") > 0)

Checks to see if the number of years between Date and the current date is greater than 0.

(format(dateBetween(now(), prop("Date"), "years")) + " years ago")

If it is, display the total number of years with years ago added.

: ""

Otherwise display nothing.

On This Day Filter

On This Day Is ☑️

<aside> <img src="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" alt="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" width="40px" /> By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!

</aside>