I'm trying to create a query and then use it in a dashboard to pull out all the stories that contain the word 'study' in the description and then have a status of 'in progress' or 'in test'. Can someone help with this please?
Hi @Aleem Shariff,
Are you looking specifically for just the word "Study" or do you want other variations like "Studying"? If you don't care about just getting the word "Study".
I would build the JQL like this:
description ~ "Study" AND status in ("In Progress", "In Test")
I hope that helps!
-Jimmy
Hey @Jimmy Seddon , thanks for getting back. Not concerned with a variation on 'study' for now. I'll try your suggestion and see if it solves my problem. Thanks again!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just building on your suggestion @Jimmy Seddon
project = "project name" and issuetype = story and description ~ "Study" And status ("In Progress", "In Test")
Idea is that I am only interested in a particular project where issue type is story that has the description containing study and which can be either in progress or in test.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.