Calculate a Weighted Average Function

<< Click to Display Table of Contents >>

Raynet One Data Hub > 14.0 > Dashboards and Reports Customization Guide > Designing Reports > Shape Report Data > Use Calculated Fields 

Calculate a Weighted Average Function

This tutorial demonstrates how to calculate a weighted average function in a report, for instance, calculate a weighted average price for the units in stock within each product category: Sum (Unit Price * Units In Stock) / Sum (Units In Stock).

 

eurd-web-weighted-average-result

 

Use Report Summary Functions (Recommended)

You can calculate a weighted average by specifying a control's expression using several built-in report summary functions.

 

papercliper

Note:

You can use this approach if expression bindings are enabled in the Report Designer (the Designer provides the Expressions panel).

 

1.Open an existing report or create a new one from scratch.

2.Bind a report to a required data source.

3.Insert the Group Header band, select the Group Fields section in the Actions category and add a new group field to group the report's data by the required data field.
 
eurd-web-shaping-count-group-data
 

4.Construct a layout like the following:
 
eurd-web-weighted-average-layout
 

5.Add the Group Footer band to the report and drop a Label control on this band to display the summary result.
 
Expand the Summary section in the Actions category and set the Running property to Group.
 
eurd-web-weighted-average-summary-running
 

6.Click the Expression property's ellipsis button. This invokes the Expression Editor where you can specify a custom expression with multiple built-in functions from the Functions | Summary section. Report summary functions start with the "sum" prefix to help differentiate them from aggregate functions.
 
eurd-web-weighted-average-summary-expression
 

7.You can also use the control's Format String property to format the summary's value. For instance, set this property to Weighted Average Price: {0:c2}.

 

Use Aggregate Functions

You can create a calculated field and use a standard aggregate function in its expression to evaluate a weighted average.

 

1.Open an existing report or create a new one from scratch.

2.Bind a report to a required data source and construct the required report layout.

3.Switch to the Field List, select a data table and click Add calculated field.
 
eurd-web-add-calculated-field
 

4.Click the Edit button for the calculated field to display calculated field properties. Specify the Name property, set the Field Type to Decimal and click the Expression property's ellipsis button.
 
eurd-web-weighted-average-calculated-field-settings
 

5.In the invoked Expression Editor, specify the expression using the Sum aggregate function. For example:
 
[][[CategoryID] == [^.CategoryID]].Sum([UnitPrice] * [UnitsInStock]) / [][[CategoryID] == [^.CategoryID]].Sum([UnitsInStock])
 
eurd-web-weighted-average-calculated-field-expression
 
To construct a valid aggregate expression, use the following format, which consists of four parts.
 
[<Collection>][<Condition>].<Aggregate>(<Expression>)

 

o<Collection> - Specifies a collection against which an aggregated value should be calculated. It can be the relationship name in a case of a master-detail relationship, or the name of a collection property exposed by the target class. For example, [CategoriesProducts][[CategoryId]>5].Count(). Empty brackets [] indicate the root collection.

o<Condition> - Specifies a condition defining which records should participate in calculating an aggregate function. To obtain an aggregated value against all records, delete this logical clause along with square brackets (for example, [].Count()).

o<Aggregate> - Specifies one of the available aggregate functions.

o<Expression> - Specifies an expression evaluating values to be used to perform calculation. For example, [][[CategoryID] > 5].Sum([UnitPrice]*[Quantity]). The Count function does not require field values to count the records, so leave the round brackets empty for this function.
 
You can refer to the currently processed group using the Parent Relationship Traversal Operator ('^'). This allows you to calculate aggregates within groups using expressions like the following: [][[^.CategoryID] == [CategoryID]].Sum([UnitPrice]).
 
For more information, see Expression Language.

 

6.Add the created calculated field to the report as an ordinary data field and format its value.