What I’m trying to do
I have a Base in a folder that has notes further grouped by (sub)folder. This is great and works well! But I would like each grouped heading to show a count of the notes found in its respective folder.
For example, the group headings should look like this: FolderPath (# results).
Things I have tried
file.folder + " " + "(" + file.folder.length + ")"
This is the format I want, but obviously .length does not count results. It only counts the characters in the string that is the folder path. This was the closest I could find to counting from the Bases syntax/formula documentation.
Is it possible to count results how I want to? Thanks in advance!
Caveat: I don’t want to do anything particularly hacky.
