````tabs
tab: No Status
```dataview
table list("🎯 " + Description, "💡 " + Why) as "Details", Deadline, Goal, Area
FROM #project AND !"Hidden"
WHERE !Status AND length(file.tags) < 2
SORT Deadline asc
LIMIT 10
```
tab: Elaboration 🟥
```dataview
table list("🎯 " + Description, "💡 " + Why) as "Details", Deadline, Goal, Area
FROM #project AND !"Hidden"
WHERE (contains(Status, "🟥") OR contains(file.tags, "🟥"))
SORT Deadline asc
LIMIT 10
```
tab: Upcoming 🟧
```dataview
table list("🎯 " + Description, "💡 " + Why) as "Details", Deadline, Goal, Area
FROM #project AND !"Hidden"
WHERE (contains(Status, "🟧") OR contains(file.tags, "🟧"))
SORT Deadline asc
LIMIT 10
```
tab: Active 🟨
```dataview
table list("🎯 " + Description, "💡 " + Why) as "Details", Deadline, Goal, Area
FROM #project AND !"Hidden"
WHERE (contains(Status, "🟨") OR contains(file.tags, "🟨"))
SORT Deadline asc
LIMIT 10
```
tab: Finished 🟩
```dataview
table list("🎯 " + Description, "💡 " + Why) as "Details", Deadline, Goal, Area
FROM #project AND !"Hidden"
WHERE (contains(Status, "🟩") OR contains(file.tags, "🟩"))
SORT Deadline asc
LIMIT 10
```
tab: Archived ⬛
```dataview
table list("🎯 " + Description, "💡 " + Why) as "Details", Deadline, Goal, Area
FROM #project AND !"Hidden"
WHERE (contains(Status, "⬛") OR contains(file.tags, "⬛"))
SORT file.name asc
LIMIT 10
```
````