<aside>
🧠 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.
</aside>
<aside>
❓ Priority 2
<aside>
❓ Priority 1
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")), "")
<aside>
❓ Priority 3