Dataview finds file titles with a tag from a specific folder

What I’m trying to do

I want to compose a dataview query a List showing file title that have a specific tag from files in a file called “Inputs”. I want to be able to click on the file title to go to that file.

Things I have tried

Looked for dataview plugin in Obsidian help. There is no help file for the Dataview plugin. Also, I read community files where people are asking for dataview searches for tags. They were more complex than my request. My attempt at dataview did not work.

> LIST without ID
>   "**" + choice(Title, Title, file.name) + "**" AS "Title", 
>  FROM "Inputs"
> FROM #tvx

I am not sure what the “**” mean above, but I assume they mean any file title.
I want to know the titles of the notes with the tag #tvx

dont use two FROMs, use AND

FROM "Inputs" AND #tvx

> LIST without ID
>   "**" + choice(Title, Title, file.name) + "**" AS "Title", 
>  FROM "Inputs" AND #tvx

Thank you for your advice.
I have never used dateview before. I am expecting to see a list, but it does not appear.

I have set up my dataview app as in the screenshot.

dataview cannot be capitalized. That was my mistake. It work in small case.

1 Like