I want to write a query across all my company projects that have the label "staffing" that are tagged for the March and June QR Release .
March and June QR Release are also indicated by a label:
QR_202103
QR_202106
QRCandidate_202106
The following query is returning results with any of those labels so some have the QR label but not staffing
labels in (Staffing, QR_202103, QR_202106, QRCandidate_202106)
Any ideas ??
Thanks
Dwight
Hi @[deleted],
Like @Alexis Robert mentioned you need to use AND operator. would like to add mine along with Alexis's answer
labels = "Staffing" AND labels in (QR_202103, QR_202106, QRCandidate_202106)
Br,
Leo
Thanks !!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @[deleted] ,
instead of the LABEL IN query, you should try with an AND operator :
labels = Staffing AND labels = QR_202103 AND labels = QR_202106 AND labels = QRCandidate_202106
Let me know if this helps,
--Alexis
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.