In the documentation I read ‘where’ functions as an AND function. I wish a to-do only to exist whenever transport has not been arranged AND it is not in the past. However, where ( ) in this case does not seem to be correctly implemented, as to-do’s still exist for states with ‘Past’?’No’.
Can anybody please help me with the correct syntax?
If I’m correct you mean that you don’t expect todos for entries with the state ‘Past’?’Yes'`.
But you are correct that there still is a todo label in the entry view even when the where condition is not met. It shows as a “todo for someone else” instead of a “todo for you”.
Given the following contrived example a task is only a todo when it is assigned to someone and the task is not closed.
Thank you Paul. Your explanation helped me to clearly understand how where is used in this case. It also helped me to understand I was using it incorrectly.