Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JQL How get issue where status was in "Waiting" ?

Alex
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 11, 2022

Hello everyone! I'm trying to find tasks with JQL that was in the waiting status (today, yesterday, etc.)

I would appreciate any help. Thank you.

3 answers

2 accepted

2 votes
Answer accepted
Nicolas Tagle
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 11, 2022

Hello Oliver,

The JQL you are looking for is something like this:

status changed FROM "Waiting for customer" DURING (-1d, now())

Where the key is "change FROM"  and DURING(-1d, now()) to determine the time windows. There is a lot of modifications to this JQL to match what you need but I think it covers the basics, hope it helps you out.

Best regards,

Nico.

Alex
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 14, 2022

@Nicolas Tagle Hi!Thank you for help! It's worked!Have nice day!

Like Nicolas Tagle likes this
Nicolas Tagle
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 14, 2022

Awesome!, you too, take care!

0 votes
Answer accepted
Alex
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 14, 2022

First day:

project = "your project" AND status changed TO "Waiting" DURING (startOfDay(), now() )

Second day: 

"your project" AND status changed TO "Waiting" DURING (-1d, -1d)

2 votes
Karolina Wons_SaaSJet
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 14, 2022

Hello @Alex 

You can use a JQL proposed by @Nicolas Tagle if it meets your needs

But if I understand you correctly, you would like to display time in status data for tasks with JQL, wouldn't you?

If so, I recommend you try some apps from the Atlassian Marketplace

Hope you find the one that fits your needs the best

Alex
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 14, 2022

@Karolina Wons_SaaSJet  Hi! Thank you!

Suggest an answer

Log in or Sign up to answer