You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello:
What is the best way to go about searching for an empty date field in issues? I've tried "Start Date" is EMPTY as well as "Start Date" = EMPTY but neither work. It still retrieves issues that have dates selected in the field.
Thank you.
@Alen DumonjicStart Date is not a system field i suppose, so if you will add it to the screen in the screen scheme for issue types , it should filter correctly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Alen DumonjicNo it will not show if its a custom field and it is not added to screen. I suppose it Is not a system field it should be a custom field , You can try to add Start Date to the screen limit search to a project and try the query and see what happens enter start day in one screen and don't enter the other when creating a ticket in a particular project.
ENTER Search
"Start Date" is EMPTY AND project = "IT"
"Start Date" is not EMPTY AND Project = "IT"
Best!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tested it with another field, and it worked. Still not sure why it's not working with Start Date.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same problem. Some issues work, others don't. So I tried something else and ReIndexed all of Jira. The problem went away.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same bump +2 years: JQL check within a branch of the issue "{{issue.fields.customfield_12345}} is EMPTY" fails the the non-helpful error is "is" is a reserved word. Also in JQL of course you cannot check with smart values, so we are researching other software that is less unhelpful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = "Project Vail" AND issuetype != Epic AND labels = VAIL AND labels != Projectmanagement AND labels != Archieve AND "Start Date"= EMPTY or "End Date" = EMPTY
this query not giving error however epic is appearing, anyone face this issue?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
AND is evaluated before OR, so the above query likely includes all issues with an empty "End Date." Try wrapping the "End Date" OR with other fields connected to an AND using parentheses.
For example:
project = "Project Vail" AND issuetype != Epic AND labels = VAIL AND labels != Projectmanagement AND labels != Archieve AND ("Start Date"= EMPTY or "End Date" = EMPTY)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I know this is old, but I came here looking for the same answer. Mine worked, and the difference I could see was that 'date' in 'Start date' has a lower case 'd'.
"Start date" is EMPTY
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.