Hmm… Are you sure your YAML is properly formatted?
Try the following in an empty file:
---
Time:
- 3.00
- 5.22
- 2.00
- 3.50
---
```dataview
table without id time, min(time)
where file.name = this.file.name
```
For me this produces the output of:
As expected, this is a table with just one row where the values in the first column is the list of all values, and the second column is the minimum value of the list.
To give further assistance we would need a little more information such as the use case or what you’re intending to do, and what is your base data for doing so.
Bonus tip: To properly show code blocks in a forum post, enclose the entire section within code fences of more than three backticks, like four backticks, ````, before and after the section you want to display.
HeHe… That limit the query to only match that file, very useful when testing stuff… My bad for not removing it, or commenting upon that.
```dataview
table time, min(Time), file.folder
where time
```
This minimum query shows all files in the entire vault having a time field, and the minimum of that field if possible. With an addition of the source folder of the corresponding file.
It should work even if you just specify a folder higher up in the hierarchy. At least it does so for me. Are you sure there aren’t any strange typos in there?
Try copy-paste from the file.folder column, and back into the from "..." statement. See if that helps.
In this column assignment Time can be the entire array (or list) of times from that file. So depending on whether you’ve got any group by or flatten spread out elsewhere in the query, this might trigger that number / array error.
One way around that could be to use 20 / min(time) if it’s to be used for only that value. Other variants depend on the rest of your query.