Dataview problem table, week and file.name

hi,
what am i doing wrong?

I have my daily entries in the folder 4 Calendar/Day.

I want to be able to view these day entries for a week in the week view.

Unfortunately, somehow there is an error here and it does not make a comparison with the filename that is named after the week.

2023-W32 this week is also always in the day entry in the frontmatter.

Why does the query not work?

I am looking for the weeks?

table file.name,week,type
FROM "4 Kalender/Tag" 

where    file.name=week
SORT file.name desc

if i take out the where query, the correct year and week is displayed under week in the table. Why can’t I query this?

i have found a solution :slight_smile:

list 
FROM "4 Kalender/Tag" 

where this.file.name=week

SORT file.name desc

the key is this.file.name :slight_smile:

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