Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This page describes JQL functionality in the #Table Grid Field#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.

Excerpt
hiddentrue

JQL search allows you to search for issues by the grid's content.

Note

If the grid was created in earlier versions 1.20 or lower, you should manually set columns indexing in the configuration.

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 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

JQL search has a set of reserved characters:

Code Block
space (" ") + . , ; ? | * / % ^ $ # @ [ ]

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 issues by the GRID_NAME and whether the grid has some data or not. 

...

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

You can search for all issues which contain a grid that is empty or is not empty. The grid is considered empty when it has not been modified. 

Check the examples below.

info
Panel
borderColorgrey
borderWidth2
titleJQL query example

"Grid 1" IS NOT EMPTY 


Panel
borderColorgrey
borderWidth2
titleJQL search helper query format

The format of the query in JQL search helper is following: "GRID_NAME" <operator> <keywords>

query example

"Grid 1" IS EMPTY 

Search issues by data from the grid

Find all issues which have grid Checklist with a column called Summary and text Onboarding

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()")

...