Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Escape Character

Ramkumar A February 21, 2022

I am trying to use the query in JQL but getting the following error

 

=JIRA("project = B2B AND issuetype=QA Task OR issuetype=Dev")

 

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

 

How do i solve the escape chararcter issue for QA Task?

1 answer

1 accepted

0 votes
Answer accepted
Pramodh M
Community Champion
February 21, 2022

@Ramkumar A 

Welcome to the Community!!

Use this

project = B2B AND issuetype="QA Task" OR issuetype="Dev"
Ramkumar A February 21, 2022

I am using this JQL in Google sheets with JIRA() function and it does not work...

 

When i tried to use some escape characters, its saying

 

Error in the JQL Query: '\Q' is an illegal JQL escape sequence. The valid escape sequences are \', \", \t, \n, \r, \\, '\ ' and \uXXXX. (line 1, character 32)

Pramodh M
Community Champion
February 21, 2022

@Ramkumar A 

JIRA("project = B2B AND issuetype='QA Task' OR issuetype=Dev")

Try the above

Ramkumar A February 21, 2022

This works. Thanks

Like Pramodh M likes this

Suggest an answer

Log in or Sign up to answer