I have a widget that is displaying the items I am assigned to already. I am using another filter to show issues I am mentioned in - but I would like to avoid having an issue show in both places, so can I put a condition on the second item - issues I am mentioned in - to exclude the ones I am assigned to?
Thanks!
Andreas
just add to your filter "...AND Assignee != currentuser()"
does that give you what you want?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
assignee!=currentuser() has worked for me!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Andreas,
Try:
assignee not in (username)
For your mentioned widget.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.