I need to create a filter for activities finished late (compared to a targetEnd).
Please, can anyone help me?
----------------------
Preciso criar um filtro de atividades finalizadas com atraso (comparando com a targetEnd).
Por favor, alguém pode me ajudar?
Let's assume you’re target is due date (as this is a default field). You query should look something like
project = abc and due <= 2d
This will give you all issues that are due within the next two days or earlier.
project = abc and due <= -7d
will give you everything that is overdue for a week or more.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.