
Prioritize Tasks Automatically with Notion Formulas
作成日
2022/02/21
オススメ度
👍👍
ひと言メモ
checkboxの使ってFormulaに絵文字を表示する方法
カテゴリDBカテゴリ

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.The if()
Function
If 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:- The test expression, which evaluates to
true
orfalse
.
- The operation to perform if
true
.
- The operation to perform if
false
.
For example:
if( 2 < 3, "Yes", "No" )
→ "Yes"
Comparison Operators
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.Prioritize with the Eisenhower Matrix
What’s the Eisenhower Matrix?
With the Eisenhower Matrix, you indicate the importance and urgency of each task:

This will give you one of four actions for each task:
- Important and urgent: Do it.
- Important but not urgent: Schedule it.
- Urgent but not important: Delegate it.
- Not urgent and not important: Eliminate it.
Apply the Eisenhower Matrix to Your Notion Tasks

To prioritize your tasks with the Eisenhower Matrix:
- Start with a Tasks database viewed as a Table.
- Add a
Checkbox
property named Important.
- Add another
Checkbox
. Name it Urgent.
- Add a
Formula
property named Priority.
- Compose the formula for Priority:Here’s how the formula works:
Plain Text
- If Urgent is checked, return “Do.”
- Otherwise (Urgent is unchecked), return “Schedule.”
- If Urgent is checked, return “Delegate.”
- Otherwise (Urgent is unchecked), return “Eliminate.”
Prioritize with the Marie Matrix
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:
- Start with a Tasks database viewed as a Table.
- Add a
Select
property named Impact. Give it three options: “High,” “Medium” and “Low.”
- Add a
Select
property named Effort. Give it three options: “High,” “Medium” and “Low.”
- Add a
Formula
property named Impact Priority. Write a formula that returns1
for high-impact tasks,2
for medium-impact tasks, and3
for low-impact tasks:Here’s how the formula works:
Plain Text
- If Impact is “Low,” return
3
. - Otherwise (Impact is not “Low”):
- If Impact is “Medium,” return
2
. - Otherwise (Impact is neither “Low” nor “Medium”), return
1
.
- Add a
Formula
property named Effort Priority. Write a similar formula that returns1
for low-effort tasks,2
for medium-effort tasks, and3
for high-effort tasks:
Plain Text
- Add a
Formula
property named Total Priority. Write a formula that adds Impact Priority and Effort Priority:
Plain Text
- Hide Impact Priority, Effort Priority and Total Priority.
- Add a
Formula
property that returns specified emojis for each possible Total Priority:Here’s how the formula works:
Plain Text
2
, return ?????.2
):- If Total Priority is
3
, return ????. - Otherwise (Total Priority is not
3
): - If Total Priority is
4
, return . - Otherwise (Total Priority is not
4
):