Dataview Truncate List

I have a dataview script that creates a file with file.zize list, but its far too long. I really only need say the top 10.

How do I truncate the list?

```dataview
table
file.size
sort file.size asc
```

Try this:

```dataview  
TABLE file.size  
SORT file.size asc
LIMIT 10
```
2 Likes

Perfect thank you.

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.