I don't understand searches

I am trying to create a saved search for things that are “overdue”: that is, anything with a due date in the past that is not done.

Searches:
	Overdue! @search(not @done && @due <[d] tomorrow)

This gives no results. @due <[d] tomorrow definitely returns tasks that aren’t done, though. What am I doing wrong?

Try: not @done and @due <=[d] tomorrow

1 Like

Ha, oh geez. So my problem was && instead of and? Dang it. Thanks, that worked!

1 Like