I am creating a view and have tried to get the correct search created, but the results are unexpected. Basically I need to find all records that have been created in the last x months. I created my query:
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="new_object">
<attribute name="new_name" />
<attribute name="new_dateactivated" />
<attribute name="new_currentstatus" />
<attribute name="new_contactid" />
<attribute name="new_accountid" />
<attribute name="new_referralsource" />
<order attribute="new_dateactivated" descending="true" />
<filter type="and">
<filter type="or">
<condition attribute="new_dateenrolled" operator="this-month" />
<condition attribute="new_dateenrolled" operator="last-x-months" value="2" />
</filter>
<condition attribute="ownerid" operator="eq" uiname="---" uitype="systemuser" value="---" />
</filter>
</entity>
</fetch>
But when I see the results in a chart/advanced find it only shows the results from the previous 60 days. For example if I run the search right now on Dec 23, it will show all the results from Oct 23 to today. I don't want that, I want to see all the results from Oct 1 to today. It seems as if it is running on a sliding scale or using a really simple function "Last X Months = X * 30"
Can I create a custom search criteria or change the way Dynamics runs this "Last X Months" search?