Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hello,
I have a user who has been doing some reporting and noticed a discrepancy in what is believed to be the same thing. He has 2 series for Hours to Resolution. One has the current user as the assignee, then the other he has the assignee as himself. The one with Current user has over 8 average hours to resolution and his one with his username has just over 1 average hours to resolution. Can anyone tell me why this would be?
Thank you!
Hi @Nate Jenks
The first thing that comes to mind is that maybe there are duplicate accounts on the site. The currentUser() should for sure be the user account that they're logged in with. The other could share the same name but be a different account.
Hey Luis,
Thank you for the reply! I had checked this before, but on your suggestion checked again just to make sure. This user only has the one account. No duplicates that I could find.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I actually just went into my own project to see if the same thing was happening to me and have the same issue this other user is having. I added 2 series for "Time to first response (Avg.)" and set assignee on one to current user and the other as me. This is what I got.
I feel like I am missing some core Jira info here and I'm going to feel dumb once the answer comes.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey there,
not sure if this contributes to this topic but I am also facing strange/ unexpected behaviour.
I got this JQL in a Service Management Queue:
assignee = currentUser() AND status = "Waiting for Support" OR status = "In Progress" ORDER BY "Time to resolution" ASC
I expect and want to only see Issues where I, the current User is assigned. But I do see Issues from other users in my Query. How does this happen?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Marco,
It's not quite the same thing, it looks like there is an issue where it's messing up the current day metrics and Jira is working on a fix.
For the issue you are having you just need to put parenthesis around the Status part I believe since it has an OR. Where the OR is coming in currently it's no longer accepting the current user action. When you put the parenthesis in, it takes that full status call and combines it with the assignee instead of just the "Waiting for Support". It then adds in all users for the "In Progress" status.
Here is what worked for me.
assignee = currentUser() AND (status = "Waiting for Support" OR status = "In Progress") ORDER BY "Time to resolution" ASC
Hopefully this helps.
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Nate,
I was looking into my Issue with the queue on monday and thought, that I need something like and/or or an excluding or. Which led me to the topic of parenthesis.
Still: You deserve full credit for the exhaustive and well written explanation :)
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.