Make a list with a the tag #DailyWord

How can I make a list that contains a tag in calendar notes? Example:

Every day has a tag called #DiaryWord
I’m trying to do this but don’t show me the content

list #DiaryWord 
where file.ctime.year = 2023
where file.ctime.month = 8
where file.name != "Rutina" 
sort file.name ascending

Thanks

Why do you do LIST #diaryWord, this line tells dataview to list the filename and then extra text of “#diaryWord” ?

If you want to filter on notes being tagged with #diaryWord you’d need to add another line like FROM #diaryWord (as the second line) or similar.