Hi,
In Confluence I wish to display on each project documentation page the registered Jira issues related to that project.
I used the Jira issue filter macro in confluecne with following search query:
project = "Project1" AND cf[10201] ~ AAAA
Which works fine.
Then I tried expanding my search to the following
project = "Project1" AND cf[10201] in ("AAAA", "BBBB")
Which "The Jira server didn't understand". How shall I search for two values in the field?
Hello,
If it is a text field you should search like this:
project = "Project1" AND (cf[10201] ~ AAAA OR cf[10201] ~ BBBB)
It is indeed a text field.
Thank you, works perfectly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Dennis De Braekeler You are most welcome! If my asnwer helped you, kindly accept my answer.
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.