This guide details the development of the Automated Task Prioritization template. Dissect it for your own knowledge, or simply adapt its contents for your own needs.
Notion's wide versatility makes it a powerful tool for managing tasks. By pairing the if()
function with a prioritization matrix, you can automatically prioritize your tasks to boost your productivity even further.
if()
FunctionIf you're new to Notion formulas, consider starting with Meet Notion's Formula Property.
The if()
function allows you to perform an action if a condition is met, or another action if the condition is unmet. By nesting if()
functions, or placing them within one another, you can specify actions for numerous conditions.
The if()
function takes three arguments:
true
or false
.true
.false
.For example: if( 2 < 3, "Yes", "No" )
→ "Yes"
For the first argument — the test expression — you can use comparison functions, such as test()
, or comparison operators, which you'll find in The Notion Formula Cheat Sheet.
With the Eisenhower Matrix, you indicate the importance and urgency of each task:
This will give you one of four actions for each task:
To prioritize your tasks with the Eisenhower Matrix:
Checkbox
property named Important.Checkbox
. Name it Urgent.Formula
property named Priority.if(prop("Important"), if(prop("Urgent"), "Do", "Schedule"), if(prop("Urgent"), "Delegate", "Eliminate"))
Here's how the formula works:Championed by renowned Notion user Marie Poulin, the Marie Matrix considers the impact and effort of tasks. Each can be low, medium or high; the higher the impact and lower the effort, the higher the priority.
To prioritize your tasks with the Marie Matrix:
Select
property named Impact. Give it three options: "High," "Medium" and "Low."Select
property named Effort. Give it three options: "High," "Medium" and "Low."Formula
property named Impact Priority. Write a formula that returns 1
for high-impact tasks, 2
for medium-impact tasks, and 3
for low-impact tasks: if(empty(prop("Impact")), toNumber(""), if(prop("Impact") == "Low", 3, if(prop("Impact") == "Medium", 2, 1)))
Here's how the formula works:3
.2
.1
.Formula
property named Effort Priority. Write a similar formula that returns 1
for low-effort tasks, 2
for medium-effort tasks, and 3
for high-effort tasks: if(empty(prop("Effort")), toNumber(""), if(prop("Effort") == "Low", 1, if(prop("Effort") == "Medium", 2, 3)))
Formula
property named Total Priority. Write a formula that adds Impact Priority and Effort Priority: add(prop("Effort Priority"), prop("Impact Priority"))
Formula
property that returns specified emojis for each possible Total Priority: if(prop("Total Priority") == 2, "?????", if(prop("Total Priority") == 3, "????", if(prop("Total Priority") == 4, "⭐⭐⭐", if(prop("Total Priority") == 5, "☕☕", "?"))))
Here's how the formula works:2
, return ?????.2
):3
, return ????.3
):4
, return ⭐⭐⭐.4
):5
, return ☕☕.5
), return ?.Questions? Tweet @WilliamNutt.