Hi
I need to create a filter, which shows me all issues a certain user has approved. Even though the approval step might not be done yet, because other users have to approve first.
Ist this somehow possible? All users are in different approval groups.
Thank you
Hi @Marco Calluso
Give this JQL a try... it works for me in cloud;
project = abc123 and "Approvals[Approvals]" = approver('firstname lastname') OR "Approvals[Approvals]" = pendingBy("firstname lastname")
substitute the bold values with whatever you're looking for - this will return issues approved and issues waiting to be approved.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.