Dataview Query help

What I’m trying to do

I’m using the following query:

```dataview
TABLE feature as "Feature", rows.file.link AS "Notes"
WHERE feature AND !contains(file.folder, "📄 Templates")
FLATTEN feature
SORT feature
GROUP BY feature```

And in the feature column I am seeing the results alphabetized but in three sets. A-Z, then more results A-Z and a third group A-Z.

I can’t seem to figure out what is causing this to happen. Any suggestions to improve this query?

Do you try SORT feature ASC (or DESC)?

Thanks for the suggestion. Adding ASC doesn’t make a difference to the sort.

Another suggestion: replace TABLE feature as "Feature", rows.file.link AS "Notes" for TABLE sort(feature) as "Feature", rows.file.link AS "Notes"

Thanks for the suggestion. Unfortunately, this removes the feature names from the list entirely.

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