I am trying to search thru multiple projects for the work assigned to one assignee I an new to using the search features and tried the following and received no results:
project = ACTIVEDIRECTORY OR project = "Exchange 2010" AND assignee = JasonM
I am trying to find all work for JasonM in both ACTIVEDIRECTORY and "Exchange 2010"
Try this:
(project = ACTIVEDIRECTORY OR project = "Exchange 2010") AND assignee = JasonM
or
project in(ACTIVEDIRECTORY, "Exchange 2010") AND assignee = JasonM
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project in (PROJ_1, PROJ_2) AND ...
that worked great for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
... and if you only know a part of the project's name? Is it somehow possible to look for all projects that have "HCI" in their names ?
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.