trying to create a custom filter in JQL but for some reason all i get is a "!" mark
this is all i've wanted to do :
reporter = currentUser() order by created DESC AND Resolution='בוטל' (which is in Hebrew)
but it doesnt matter which operator i use the result is always the same cant run query
pls help or advice
Hi @Sorana Zelinger ,
welcome to the community.
You have to move the order by part to the end, then it should work:
eporter = currentUser() AND Resolution='בוטל' order by created DESC
Right.Thanks
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.