Quantcast
Channel: DevExpress Support Center (Examples)
Viewing all articles
Browse latest Browse all 7205

How to calculate Total cell values based on the low level Сell summary values

$
0
0

This example demonstrates how to use the CustomSummary Event to resolve the problem described in the Total values calculation seems to be incorrect, how to calculate Min, Max, Average values based on the cell thread. The sample is built based on the ASPxPivotGrid control, but it is also possible to use this approach with other pivot control for WinForms, WPF, Silverlight and MVC. 
Below is the CustomSummary event handler code description:
1. In the root IF clause, we determine the required summary type. For all fields below the "Company" one, it is necessary to show min values. In the attached sample project, all fields are located in the Row Area, so it is enough to check the AreaIndex Property of the corresponding e.RowField:

[C#]
if(e.RowField!=null&&e.RowField.AreaIndex>=fieldCompanyName.AreaIndex){//Min}else{//Sum of Min}

2. Pivot Grid automatically calculates predefined summary values for all cells, so it is not necessary to recalculate them manually. You can get them from the e.SummaryValue object and assign them to the CustomValue Property:

[C#]
e.CustomValue=e.SummaryValue.Min;

3. Now it is necessary to calculate custom summary values (Sum of Min). Pivot Grid calculates summary values for all cells based on the underlying data source rows regardless the cell type. However, for our task it is necessary to calculate total values based on the low level cells summary values. E.g for Quarter rows it is necessary to group data by Company, then find Min value in each group and finally summarize all min values. For Year field logic will be the same but it is necessary to group data by Quarter and Company. For Grand Total cell it is necessary to group data by Year, Quarter and Company. This is a rather complex task so it is better to discuss the code part by part.

3.1. To get grouping fields simply iterates through the Fields collection and find field that are located into the Row Area below the current e.RowField but above the Company field:

[C#]
vargroupingFields=pivot.Fields.Cast<PivotGridField>().Where(f=>f.Visible&&f.Area==fieldCompanyName.Area&&f.AreaIndex<=fieldCompanyName.AreaIndex&&(e.RowField==null||f.AreaIndex>e.RowField.AreaIndex));

 3.2. Get the pivot drill-down data source and cast it to the IEnumerable<PivotDrillDownDataRow> type:

[C#]
vardrillDownDataSource=e.CreateDrillDownDataSource().Cast<PivotDrillDownDataRow>();

3.3. At present, we have a single collection of data source rows. To create a collection of row groups, execute the following code:

[C#]
List<IEnumerable<PivotDrillDownDataRow>>temporaryList=newList<IEnumerable<PivotDrillDownDataRow>>();temporaryList.Add(drillDownDataSource);IEnumerable<IEnumerable<PivotDrillDownDataRow>>dataGroups=temporaryList;

3.4. Now it is necessary to group the entire data source by groupingFields requested earlier:

[C#]
foreach(varfieldingroupingFields){dataGroups=dataGroups.SelectMany(groupRows=>groupRows.GroupBy(r=>r[field]).Select(g=>g.AsEnumerable()));}

3.5. The final step is to iterate through all groups, find a min value in each of them and then calculate the sum of all found values:

[C#]
varvalue=dataGroups.Sum(groupRows=>groupRows.Min(r=>Convert.ToDecimal(r[e.FieldName])));e.CustomValue=value;

Viewing all articles
Browse latest Browse all 7205

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>