## 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 ```