我在数据集中使用SharePoint列表和下面的Caml查询生成SSRS报告。
<RSSharePointList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ListName>Test_FAMM</ListName>
<ViewFields>
<FieldRef Name="Region" />
</ViewFields>
</RSSharePointList>
但是,我只想得到参数的不同值。有什么修改吗?
不幸的是,CAML不允许使用DISTINCT。您可以使用以下几种变通方法。
请参阅:https://sharepoint.stackexchange.com/questions/77988/caml-query-on-sharepoint-list-without-duplicates
或者:使用SPQuery检索不同/唯一值的最佳方式是什么?