Dataview filtering none values

What I’m trying to do

I would like to have data view where i filter out none values

this is my code

Table innerestimme as "Innere Stimme"
WHERE type = "daily log"
SORT file.ctime DESC

Things I have tried

Table innerestimme as "Innere Stimme"
WHERE type = "daily log"
SORT file.ctime DESC

I tried to do a dataviewjs, but I’m not familiar with js yet

There may be anyone else have the same question.

Extend the WHERE clause to become:

WHERE type = "daily log" and innerestimme

And it should filter out non-null values

1 Like

It works ! Thanks a lot! :smile:

1 Like

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