# Incubator Board
## ✅ WIP
```dataview
TABLE
Status,
file.size as Size,
Created,
dateformat(file.mday, "[[yyyy-MM-dd]]") as "Updated"
FROM "dock" and (#now or #later or #x)
SORT choice(Status = "#now", 0, choice(Status = "#later", 1, 2))
```
## 🌱 Seedlings
```dataview
TABLE
file.size as Size,
Created,
dateformat(file.mday, "[[yyyy-MM-dd]]") as "Updated"
FROM "dock" and -#now and -#later and -#x and -#someday
SORT file.cday DESC
LIMIT 7
```
## 🍁 Aging
```dataview
TABLE
file.size as Size,
Created,
dateformat(file.mday, "[[yyyy-MM-dd]]") as "Updated"
FROM "dock" and -#now and -#later and -#x
SORT file.mday ASC
LIMIT 7
```