Things I have tried
I’ve tried searching for this both here and on teh interwebz but no luck.
What I’m trying to do
I’m trying to collect the number of times a specific character is found in a file using dataview.
For instance, I might have a file stuff:
- item 1 ✅
- item 2
- item 3 ✅
- item 4 ✅
I keep hoping there’s a way to ask dataview to look at that specific file and count how many times it finds the character
. Right now, I am just manually counting them, and that works, but if the items in the file grow too long, I’ll probably get the number wrong. And I’d like it to stay correct.
Ideally, I’d love an inline query, but even a list without id or table would work if I could just get that number automatically.