Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,553,369
Community Members
 
Community Events
184
Community Groups

issueFunction in dateCompare example

Dear community!

 

Here I am again searching for a help.

I am trying to use issueFunction in dateCompare in my JQL request and I am repeatedly getting errors instead of what I want. 

For example I try to find issues that had not been commented within one week of creation:

project = Operations AND issueFunction in dateCompare("created +1w < firstCommented")

and I get:

Scripted function "dateCompare" compilation failure. Contact administrator and check logs. Message: The comparison must contain exactly one comparison operator which is either >, <, =, <= or >=.

Can someone give me a whole line of successful JQL request so I can repeat it with my own data?

Just cannot get how it works. Please help. Thank you! 
 

1 answer

1 vote
Tessa Tuteleers
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 25, 2021 • edited

Hi @Daria Pavlova ,

you forgot something in your syntax.

The JQL query works as follows:

dateCompare(Subquery, date comparison expression)

You added the subquery in front of the issuefunction, and jumped right to the date comparison.

You can do what you want in 2 ways:

  • keep your project conditon in front and use an empty subquery (better)
    project = Operations AND issueFunction in dateCompare("", "created +1w < firstCommented")
  • add your condition as subquery (less performant)
     issueFunction in dateCompare("project = Operations", "created +1w < firstCommented")

Hope this helps!

  • Tessa

I'm having a bit of trouble with the formatting when you try and put things with two words in the subquery

 

issueFunction in dateCompare("Issuetype = Planned Change AND created >= startOfYear()", "Scheduled End < Scheduled Start")

 

Error in the JQL Query: Expecting either 'OR' or 'AND' but got 'Change'. (line 1, character 21)

Tessa Tuteleers
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jan 24, 2022

Hi @Steve Letch,

if you want to use multi word strings, you always need to quote them, if you are already using double quotes as you are now, you can use single quotes within them. 

This would look like that for you: 

 issueFunction in dateCompare("Issuetype = 'Planned Change' AND created >= startOfYear()", "'Scheduled End' < 'Scheduled Start' ")

Could you confirm this works for you? 

Cheers,
Tessa

Been off sick a couple days but will check tomorrow, thanks

Hi Tessa, 

unfortunately this does not work either: 

  • JQL:  issueFunction in dateCompare("", "'Period End' > 'Period Start'+1M ")
  • Error: Scripted function "dateCompare" compilation failure. Contact administrator and check logs. Message: Field name: 'Period End' not found or not a date or datetime.

It seems that this function is not well configured because it does not work with fields which have spaces in the name. 

I also tried with cf[1234] and other date fields on the system but no luck. 

Hi all, I contacted the support and here is the answer for future reference: 

"I believe you don't need to add a single quotation for the custom field when using the dateCompare() JQL function."

issueFunction in dateCompare("", "end date > start date+1M")

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events