banner | banner_x | banner_y |
---|---|---|
assets/banners/Books-Banner.png |
0.5 |
0.5 |
This code displays all 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 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 author != null AND title != null
SORT author ASC