开发者

How to configure a non-trivial list view in share point

I have a sharepoint list. It has items with properties A, B, C, D, and E. I want to create a view that would filter the items like this....

WHERE (a = 1 AND b = 2) AND (c = 3 OR d = 4 OR e = 5)

Sharepoint appears to flatten this out to

WHERE 开发者_C百科(a = 1 AND b = 2 AND c = 3 OR d = 4 OR e = 5)

And gives me results I do not want. IRL, this is to view work currently in progress (A and B - text field) that is assigned to a set of developers (C, D, and E - People).

Does anyone have a reasonable solution to this? Computed columns doesnt seem to allow for the data type "People". Is there any other formulae or trickery I can code in to make this work?


Probably you need XSLT View or webpart.

UPDATE:

Sorry, I totally forgot about CAML views. It is a lot more suitable solution. Read this article for example

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜