Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Style
code {
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
    padding: 2px 2px;
}

You can search for specific issues by their grid values with Jira advanced search. Table Grid Next Generation is configured to index grid columns by default starting from 1.3.0 version.

...

Note

To make a column searchable you need to check the Index data checkbox when configuring a column.

Table of Contents
maxLevel2
minLevel2

Syntax

Use in grids as a JQL function to search by the grid's content. Check  Check the syntax below.

Note

All search values are case sensitive. So, if you have a grid named Grid1 with a column named Column 1, the query and column name in your search query should look like this:

issue in grids("Grid 1", "Column 1 = <search value>")

Panel
borderColorgrey
borderWidth2
titleSearch query syntax

issue

...

in

...

grids("<grid

...

custom

...

field

...

name>",

...

"<column

...

name>

...

<operator>

...

<search

...

value>")

Search by 2 parameters:

Panel
borderColorgrey
borderWidth2
titleSearch query syntax

issue

in

grids("<grid

custom

field

name>",

"<column

name>

<operator>

<search

value>","<column

name>

<operator>

<search

value>")

Search by 2 grids:

Panel
borderColorgrey
borderWidth2
titleSearch query syntax

issue

in

grids("<grid

custom

field

name>",

"<column

name>

<operator>

<search

value>")

and

issue

in

grid("<grid

custom

field

name>",

"<column

name>

<operator>

<search

value>")

Restricted words and characters

...

If you want to use these characters in your search queries, you need to:

  • surround them with quote-marks (you can use either single quote-marks (') or double quote-marks (")). For example: 

    Code Block
    issue in grids(“Grid quotes”, version = "[example]")
  • if you are searching a text and the character is on the list of reserved characters for text searches, surround them with two backslashes( \\ ). For example: 

    Code Block
    issue in grids(“Grid quotes”, ”Summary = \\[Jul 10]\\ - Invoice pending review”)

You can't search for many special characters in text fields using this method.

Reference

Below you find a detailed description of the operators that are used for advanced searching within the grid's content.  Each column type supports a set of the operators detailed in the table below.

Column type

Supported operators

String, Textarea

~; !~; =; !=; in; not in

Integer, Number 

=; !=; in; not in; <; <=; >; >=

Date, Time, DateTime

=; !=; in; not in; <; <=; >; >=

Single Select List, Multi Select List

=; !=; in; not in

Checkbox

=; !=; in; not in

Userlist

=; !=; in; not in

Formula

=; !=; in; not in

Examples

Search issues by empty grids

...

Panel
borderColorgrey
borderWidth2

issue

in

grids("Checklist",

"Summary~Onboarding")

...

Find all issues which have grid Shopping order with the column What sandwich that includes text Chicken

Panel
borderColorgrey
borderWidth2

issue

in

grids("Shopping

order",

"What

sandwich=Chicken")

...

Find all issues which have grid Testing with the column Summary that equals test and task

Panel
borderColorgrey
borderWidth2

issue

...

in

...

grids("Testing",

...

"Summary=test",

...

"Summary=task",

...

"status='open'")

...

AND

...

issue

...

in

...

grid("Grid2",

...

"Summary=task")

Find all issues which have grid Checklist with the checked checkboxes(column name is Done; checked checkbox equals true)

Panel
borderColorgrey
borderWidth2

issue

in

grids("Checklist",

"Done=true")

...

Find all issues with the Checklist grid which have checkbox column and values are unchecked.

Panel
borderColorgrey
borderWidth2

issue

in

grids("Checklist",

"Done=false")


Find all issues which have grid Shopping order with the Price greater than 10

Panel
borderColorgrey
borderWidth2

issue

in

grids("Shopping

order",

"Price>10")

Find all issues with Team Workload grid which includes Sales team data. The query helps to find all the workload  for a specific team.

Panel
borderColorgrey
borderWidth2

issue in grids("Team Workload", "Team=Sales")

...

Find all issues that have a TGE Field grid with the currently assigned user picked in the Assignee column. 

Panel
borderColorgrey
borderWidth2

issue in grids("TGE Field", "Assignee=currentUser()")

Image Removed

...