Table shows too much tags

Hello!

I’m trying to get a list of articles grouped by the used tags - which doesn’t work. So I’ve tried it with a table:

TABLE file.tags
FROM #tag/subtag

Now I have a table with my articles and their tags (not grouped at all, but hey: Articles and tags!), but the output of the tags is:

#tag/subtag/subsubtag
#tag/subtag
#tag

What can I do to only show the tag I’ve used in the article? Not the full “breadcrump” of tags? I want to see “#tag/subtag/subsubtag” - “#tag/subtag” and “#tag” are useless for me at that point.

Can anybody help me?

You want a list of articles using one specific tag?

## subtag
```dataview
LIST
FROM #tag/subtag
```

In your table with “too much tags”, you can join all the tags and avoid a list:

```dataview
TABLE join(file.tags, " ") as tags
FROM #tag/subtag
```
1 Like

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