Hi,
I would like to know why my JQL query does not work even though I put the right variables:
issueFunction in expression('', 'Preestimate=Estimation')
Both fields have numerical values.
I would highly recommend you enter a sub-query to make sure you don't attempt to evaluate this for all of your issues.
But I think you will need to use a double-equal:
issueFunction in expression('', 'Preestimate==Estimation')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @MelvinDave
I also found this information in the documentation:
Custom field names are likely to have spaces, which can’t be parsed. If so, remove the spaces. It’s not case-sensitive but use camel-case for maximum readability. If your field names have any other punctuation you must use the format customfield_12345.
Are you sure you have the correct field names?
You can only use custom fields that have a configured searcher, as, for performance reasons, we only retrieve values from the Lucene index. The standard searchers are supported, searchers supplied by plugins will not work.
Have you configured your custom fields with a searcher?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey. Yes, I am sure I am using the correct field name, but do I need to use the field instead of the name?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not clear where that screen image you provided comes from, but I believe you need to be using the field name (without spaces) as it appears in the Custom Fields screen.
I suspect in this case you would be needing to use "PreliminaryEstimate(SP)".
I think you also need to be using the double equals for the comparison, as @PD Sheehan mentioned.
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.