B
BAndrews
I have a view i am trying to setup that is not working:
("DAV:isfolder" = false AND "DAV:ishidden" = false) AND (("AssignmentID" IS
NULL OR "AssignmentID" < 0) AND
"urn:schemas-microsoft-comfficeffice#Keywords" <> 'Daily Personal')
This works to show all non-project related items:
("DAV:isfolder" = false AND "DAV:ishidden" = false) AND (("AssignmentID" IS
NULL OR "AssignmentID" < 0) )
and this works to show all items without the category "Daily Personal":
"urn:schemas-microsoft-comfficeffice#Keywords" <> 'Daily Personal'
but every time I try to combine them to show Non-Project related items and
non-personal related items nothing shows up.
It seems like the top query should work... any help is appreciated.
("DAV:isfolder" = false AND "DAV:ishidden" = false) AND (("AssignmentID" IS
NULL OR "AssignmentID" < 0) AND
"urn:schemas-microsoft-comfficeffice#Keywords" <> 'Daily Personal')
This works to show all non-project related items:
("DAV:isfolder" = false AND "DAV:ishidden" = false) AND (("AssignmentID" IS
NULL OR "AssignmentID" < 0) )
and this works to show all items without the category "Daily Personal":
"urn:schemas-microsoft-comfficeffice#Keywords" <> 'Daily Personal'
but every time I try to combine them to show Non-Project related items and
non-personal related items nothing shows up.
It seems like the top query should work... any help is appreciated.