Forums

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

Custom Field cf[10015] - Start date is not working

Marc
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 12, 2025

Developing python script to fetch JIRA logs to generate the timesheet 

1. Wanted to fetch the custom field Start date cf[10015] but it is giving null 

jql = f'''
assignee = {assignee_id}
AND (
    cf[10015] >= "{start_date}" AND cf[10015] <= "{end_date}"
)
ORDER BY created ASC
If I add the Actual start and Actual End 
 jql = f'''
# assignee = {assignee_id}
# AND (
#   (created >= "{start_date}" AND created <= "{end_date}") OR
#   (updated >= "{start_date}" AND updated <= "{end_date}") OR
#   (cf[10008] >= "{start_date}" AND cf[10008] <= "{end_date}") OR
#   (cf[10009] >= "{start_date}" AND cf[10009] <= "{end_date}")
# )
It is working but i dont want to add beacuse Actual Start filed contain time too which is not required 
If this will not work then suggest me which date picker field should i consider to fetch the date 

1 answer

0 votes
Tuncay Senturk _Snapbytes_
Community Champion
August 13, 2025

Hi @Marc 

Welcome to the Community!

I am unsure if I understood your problem.

Are you sure the customfield's value is not null, check adding this to the JQL

AND cf[10015] is not EMPTY

If this customfield is date only custom field can you make sure that you are using YYYY-MM-DD format?

Suggest an answer

Log in or Sign up to answer