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
☑️