Hi I have a problem. I have this dataview:
TASK
FROM ""
WHERE (due < date(today) OR start < date(today))
AND !completed
AND status != "?"
AND status != "-"
AND status != "A"
AND status != "!"
AND (due OR start)
FLATTEN choice(contains(text, "🔺"), 1, choice(contains(text, "⏫"), 2, choice(contains(text, "🔼"), 3, choice(contains(text, "🔽"), 5, choice(contains(text, "⏬️"), 6, 4))))) as priority
SORT priority SORT due ASC, start ASC
And certain tasks that look like:
- example
2025-07-03
are still shown, even though they start in the FUTURE. What is wrong with my query?
Thank you in advance! Best smrtzo