I take notes in meetings in bullet lists. Potentially I tag them in-line with #action, #question or #decision, for instance. I would like to have an overview of all the tagged lines at the end of the meeting note to capture all the tagged lines.
# Meetign notes
- Item 1
- Point 1
- Point 2 #question
- Point 3
- Item 2
- Point 1 #action
- Item 3
- Point 1
- Sub-point a
- Sub-point b #decision
- Point 2
# Overview (to be generated by Dataview)
- Point 2 #quetsion
- Point 1 #action
- Sub-point b #decision
How can I use Dataview (or any other methods) to achieve this? I tried reading up the Dataview documentation but still cannot figure it out.
# Meeting notes tags
- Item 1
- Point 1
- To be or not to be, that is the #question
- Point 3
- Item 2
- To think is the #action
- Item 3
- Point 1
- Sub-point a
- To go to the beach is the #decision
- Point 2
## query
```dataview
LIST WITHOUT ID
L.text
WHERE file.name =this.file.name
FLATTEN file.lists as L
WHERE contains(L.tags, "#")
```
Yes, it is working well! Thanks a lot for your help.
I also found a comment in another thread about how to nominate particular tags in the WHERE line. I’ll leave the reference below just in case anyone could find it useful: