Forums

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

Filtering by date

Julian Haines
Contributor
April 10, 2025

Good day,

I am trying to write a JQL to filter any issues created on the 10th April 2025 but its not returning anything, the JQL I am using is 

 

created = '2025-04-10'

The created date is shown as '10 Apr 2025' in Jira but if I try and use this it says wrong format.

Is this why its not working?

Jira.png

Jira2.png

 

4 answers

1 accepted

7 votes
Answer accepted
Jack Brickey
Community Champion
April 10, 2025

Hi @Julian Haines , since the created date includes a time component you must bound the date for the 24h period. 

 

createdDate >= "2025-04-01" and createdDate < "2025-04-02" 

2 votes
Marc - Devoteam
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.
April 10, 2025

Hi @Julian Haines 

Filtering on date it's required to use yyyy-mm-dd.

You can change the look and feel for dates in the system, but for JQL this does not apply.

JQL to use is: created >= "2025-04-10"

Or to be completely sure on issue on a sinlge day,

created >= "2025-04-10" AND created < "2025-04-10"

2 votes
Nico Maikranz
Contributor
April 10, 2025

I think when you use 'created = '2025-04-10'' jira is automatically adding a timestamp to the jql.

So in the background its "created = '2025-04-10 00:00:00'" and there are no tickets with that exact time.

You should getting results with the following jql:

created > '2025-04-10' and created < '2025-04-11'

if you want to get work items for that specific date

0 votes
Florian Bonniec
Community Champion
April 10, 2025

Hi @Julian Haines 

 

Are you using '10 Apr 2025' or 2024-04-10 ? From the screenshot it seems to be '10 Apr 2025'

 

Regards

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
PREMIUM
TAGS
AUG Leaders

Atlassian Community Events