Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 618 Bytes

All_Unread_Books.md

File metadata and controls

33 lines (28 loc) · 618 Bytes
banner banner_x banner_y
assets/banners/Books-Banner.png
0.5
0.5

All Unread Books

This code displays all unread books from the Books folder sorted by author.

```dataview
TABLE WITHOUT ID
  author AS "Author",
  link(file.link, title) as Title,
  published AS "Year"
FROM "Books"
WHERE shelf != "read" AND author != null AND title != null
SORT author ASC
```

Output of above code:

TABLE WITHOUT ID
  author AS "Author",
  link(file.link, title) as Title,
  published AS "Year"
FROM "Books"
WHERE shelf != "read" AND author != null AND title != null
SORT author ASC