我是Fetchxml的新手,并使用MS CRM Dynamics 2015 On Premise使用Visual Studio 2012创建SSRS报告
我的Fetchxml查询返回一个Datetime列(CreatedOn)
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="fax">
<attribute name="createdon" />
<attribute name="documenttype" />
<attribute name="activityid" />
<attribute name="statecode" />
<order attribute="createdon" descending="false" />
</entity>
</fetch>
我想用日期分组(而不是日期时间)。
尝试使用
进行格式化=Format(createdonValue.value, "dd/MM/yyyy")
和
=FormatDateTime(createdonValue.value, DateFormat.ShortDate)
这是格式化,但分组不起作用。记录重复。
请让我知道是否有任何方法只能使用'FetchXML结果日期值'的'Date'部分进行分组,或者在使用fetchxml进行查询时只有'date'部分。(例如在另一列中。)