~ [[Efforts]] > [!mountain] [[Areas]] | **[[Projects]]** | [[Works]] > [!training] [[Active Projects|Active]] | [[Simmering Projects|Simmering]] | [[Sleeping Projects|Sleeping]] Keep your priorities in order. Quickly adjust your bandwidth as needed. Rerank often. This view shows your top-ranked projects, where the `rank` is above `2`, along with their current level of intensity. ```dataview TABLE WITHOUT ID choice( type = "project" AND status = "active", "‼️ " + file.link, choice( type = "project" AND status = "simmering", "♨️ " + file.link, choice( type = "project" AND status = "sleeping", "💤 " + file.link, file.link ) ) ) as "Top Ranked Projects", rank as "Rank", status as "Level of Intensity", OFLink as "Link" WHERE type = "project" AND rank > 2 SORT rank desc LIMIT 20 ``` --- Back to [[Efforts]]