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
We have added a new field to one of our Jira project types and I want create a filter to capture if this field is left empty, following a step in the process that requires another field to be populated
project = "Project Name" AND "Initial Doc Sent" is not EMPTY and assignee = Name and created (after April 01 2022)
The part in the brackets is what I need assistance on.
I don't want to go through the historical jira entries that we created before April 1st 20222
Should be able to just use:
AND created >= 2022-04-01
Try this...
project = "Project Name" AND "Initial Doc Sent" is not EMPTY and assignee = Name and Created > 2022-04-01
note that you mentioned you wanted to track if the issue was left empty. The above returns everything that is not empty. I assume that's what you want but it conflicts with what you asked above.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Jack Brickey - Thanks for the advice, the last bit was indeed the bit I needed and the wells potted is not EMPTY instead of is EMPTY, i had already spotted, but thanks for the assistance
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.