Dataview DASHBOARD Showcase

nice idea and actually useful snippets. You might want to display your file sizes in kB though. You can do so with this:

```dataview  
TABLE round(file.size / 1024) as "File Size (kb)"  
SORT file.size desc  
LIMIT 5  
```
2 Likes