https://coaching.healthygamer.gg/guide/welcome
## All Inputs
```dataview
table Status, Created
from [[]] and #inputCollection
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
```