@Manon Soubies-Camy Hello, please what is wrong with my query?
project = XXXX AND issuetype in (Analysis") AND >= "2020-01-01 00:00" and created <= "2020-01-31 23:59" AND component = ("Digital Content")
I need all issuetype = Analysis
With component = Digital Content
Between 01/01/2020 AND 31/01/2020
Hello @BolaC
Welcome to the community.
The field created is missing after the second "And" and quote are missing before the word Analysis. You don't need parenthese to search the component.
project = GDPSOL AND issuetype in ("Analysis") AND created >= "2020-01-01 00:00" and created <= "2020-01-31 23:59" AND component = "Digital Content"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.