I wanna search the grid table with the wild card, below is the JQL I used. Example 1 is search with exact equal to the text is can work, but when I added a * in example 2 to search with the wild card, it's not working.
Can anyone advise me, how should I write the wild card to get the result?
Example 1(work): project = ABC AND issue in grid("gridTbl1", "gridColumn1='JIRA is good'") ORDER BY priority DESC, updated DESC
Example 2(not work): project = ABC AND issue in grid("gridTbl1", "gridColumn1='JIRA is *'") ORDER BY priority DESC, updated DESC
Thanks in advance.
Hi @Yew Teng Ui
You may try this instead:
project = ABC AND issue in grid("gridTbl1", "gridColumn1 like 'JIRA is %'") ORDER BY priority DESC, updated DESC
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.