## Notes
- [Bookmark](https://community.linkingyourthinking.com/c/notemaking-mastery/sections/274166/lessons/1378736)
## All Inputs
```dataview
table Status, Created
from [[]] and #input
where contains(Collection, [[]])
Sort Created desc
```
## By Status
### No Status
```dataview
table Created, rating, source
FROM [[]] and #input AND !"Hidden"
where !Status AND contains(Collection, [[]])
SORT Created desc
```
### Not Started `#🟥`
```dataview
table Created, rating, source
FROM [[]] and #input AND #🟥 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Consuming Media `#🟧`
```dataview
table Created, rating, source
FROM [[]] and #input AND #🟧 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Implementation `#🟨`
```dataview
table Created, rating, source
FROM [[]] and #input AND #🟨 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Finished `#🟩`
```dataview
table finished, rating, source
FROM [[]] and #input AND #🟩 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Archived `#⬛`
```dataview
table finished, rating, source
FROM [[]] and #input AND #⬛ AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```