Donate
Peep the new update
- Here are some of my experiments with the new update. Watch the video attached for a walkthrough. Chapters correspond with themes.
Video
Grouping
Formulas used
Weekday Formula
if(not empty(prop("Date")), "★ " + formatDate(prop("Date"), "dddd"), "")
Habit Progress Formula
floor(100 * (unaryPlus(prop("Habit 1")) + unaryPlus(prop("Habit 2")) + unaryPlus(prop("Habit 3")) + unaryPlus(prop("Habit 4")) + unaryPlus(prop("Habit 5")) + unaryPlus(prop("Habit 6"))) / 6) / 100
Week of Month Formula
if(not empty(prop("Date")), "Week " + format(ceil((date(prop("Date")) + day(dateSubtract(prop("Date"), date(prop("Date")) - 1, "days")) - 1) / 7)), "")
Eisenhower Status Formula
if(empty(prop("Urgency")) or empty(prop("Importance")), "📥 Inbox", if(prop("Done"), "✔ Done", "🚧 Working"))
Tips
- These templates can be used as is but are made for the purpose of customization.
- You can hide empty cells in group configuration and create an archive filter (like show only unchecked done boxes) to hide past dates.