Query from a list with link

What I’m trying to do

Hello guys! I have property related which is a list of links. Files with it looks like this:
image
I want to create a table of pages containg files with certain property value.

Things I have tried

I tried thus query but it didn’t help:
image

TABLE
FROM "E F F O R T S"
WHERE contains(related,"[[3.2.2025]]") 

(All the files i want to obtain are in folder E F F O R T S).
Here is what the table looks like:

Am I doing smth wrong? Is it a syntaxis error? Help me please

Hello.

Does this work?

```dataview
TABLE
FROM "E F F O R T S"
WHERE contains(related, [[3.2.2025]])
```

In using Dataview regularly, I found things were much easier to cope with by switching to the recommended ISO8601-date format, which is essentially: [[YYYY-MM-DD]] or [[YYYY-MM-DDTHH:mm:ss]]

1 Like

When checking lists against links, you either need to compare against [[linkName]] or link("linkName").

2 Likes

yes, thank you so much!

1 Like

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