What I’m trying to do
Create a table that compares data from Todays note vs. Yesterdays and shows an up, down or same trend for each Item.
Things I have tried
I have been able to create the following dataview
table:
Using the following code:
TABLE WITHOUT ID
choice(mood>this.mood, mood + " -> " + this.mood + " ▼", mood + " -> " + this.mood + " ▲" ) AS "Mood",
choice(anxiety>this.anxiety, anxiety + " -> " + this.anxiety + " ▼", anxiety + " -> " + this.anxiety + " ▲" ) AS "Anxiety",
choice(sleep>this.sleep, sleep + " -> " + this.sleep + " ▼ ", sleep + " -> " + this.sleep + " ▲" ) AS "Sleep",
choice(food>this.food, food + " -> " + this.food + " ▼", food + " -> " + this.food + " ▲" ) AS "Food"
WHERE file.day = date(this.file.name) - dur(1day)
As you can see though, with Anxiety
, where the values are the same, I can’t find a way to denote that there is no change as choice only provides an if
then else
. What I really need is an if
, else if
and else
option.
Is this achievable in dataview
or do I need to look at something like dataviewjs
?
Can anyone provide a potential solution?
Many thanks.