Hi,
what is wrong with this simple statement?
TABLE file.name AS "File Name"
FROM "Progs"
GROUP BY substring(file.name, 0, 1) AS "Group"
Result
Hi,
what is wrong with this simple statement?
TABLE file.name AS "File Name"
FROM "Progs"
GROUP BY substring(file.name, 0, 1) AS "Group"
Result
Whenever you use GROUP BY
, all the other results are gathered into the rows
object, so try:
```dataview
TABLE rows.file.name AS "File Name"
FROM "Progs"
GROUP BY substring(file.name, 0, 1) AS "Group"
```
Perfect
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.