Hi All,
I am working on a dashboard to show the number of new signups (series 1) against the number of new signups that checked a particular option (series 2). I followed the instructions here (http://crmchartguy.wordpress.com/category/multiple-series/) to apply series filtering, however it seems that the chart is counting the records which don't pass through the filter.
The fetchxml I'm using is as follows:
<fetch mapping="logical" aggregate="true"><entity name="new_enquriy"><attribute groupby="true" alias="_CRMAutoGen_groupby_column_Num_0" dategrouping="month" name="new_enddate" /><attribute alias="possible" name="new_enddate" aggregate="count" /><link-entity name="new_enquiry" from="new_enquiryid" to="new_enquiryid" link-type="outer"><attribute alias="actual" name="new_startdate" aggregate="count" /><filter type="and"><condition attribute="new_status" operator="eq" value="0"/><condition attribute="new_status" operator="ne" value="4"/></filter></link-entity></entity></fetch>
I'd appreciate any insight, thanks :D