I need a custom filter for Customers where the ticket status is not 'Closed,' and the tickets are categorized as either 'Bugs' or 'Production Bugs,' with a last updated date in the year 2024.
I am using this Query; but its not working for me.
"Customer[Select List (multiple choices)]" = .. AND status != Closed and type = "Production Bug" and updated <= startofyear()
Hello @Vandana
If you want all tickets with a last updated date in the year 2024, for me is :
updated >= startofyear()
Hi @Vandana , welcome to the Atlassian Community and thanks for your question.
In your query, does the 'Customer' field have multiple customers? If so, I would use IN and not the =
"Customer[Select List (multiple choices)]" IN .. AND status != Closed and type IN ("Production Bug", Bug)and updated <= startofyear()
You can try this ^ and see if it works better. If it doesn't, please share your feedback and either I or someone else will try to help.
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.