Tasks
if(not empty(prop("Alert")), "... Pending", if(prop("Done"), "✓ Complete", "᮰ Backlog"))
Statusif(prop("Done"), "", if(prop("Delegate"), "⌲ Delegate", if(dateBetween(prop("Deadline"), now(), "days") <= prop("Days To Complete") and prop("Priority") == "Priority 1", "❗️Urgent", if(dateBetween(prop("Deadline"), now(), "days") <= prop("Days To Complete") and (prop("Priority") == "Priority 2" or prop("Priority") == "Priority 3"), "✈︎ Do Next", ""))))
AlertProjects
if(not empty("Progress"), slice("■■■■■■■■■■", 0, floor(10 * prop("Progress"))) + slice("□□□□□□□□□□", 0, 10 - floor(10 * prop("Progress"))) + " " + format(floor(100 * prop("Progress"))) + "%", "")
Progress Bar