Conditions
Thoughtful prioritization is the practice of assigning precise conditions to a priority level. Every priority level describes the difficulty, urgency, and impact of a task. Essentially, if you are using a
priority tag
property inside Notion, here is a formula to help systematize priority assignment with precise conditions. Priority 2
- What is ≠ Priority 1 or 3
Priority 1
- Urgency ≠ Low
- Effort ≠ High
- Impact ≠ Low
Formula
if(not empty(prop("Urgency")) and not empty(prop("Impact")) and not empty(prop("Effort")), if(not contains(prop("Urgency"), "Low") and not contains(prop("Effort"), "High") and not contains(prop("Impact"), "Low"), "Priority 1", if(not contains(prop("Urgency"), "High") and not contains(prop("Impact"), "High") and not contains(prop("Effort"), "Low"), "Priority 3", "Priority 2")), "")
Priority 3
- Urgency ≠ High
- Effort ≠ Low
- Impact ≠ High
Prioritize Tasks
[Follow Along] Prioritize Tasks