# C1.WPF.Grid.GridAggregate

## Content

<div class="doc-site-dotnet-api-container">




  <h1 id="C1_WPF_Grid_GridAggregate" data-uid="C1.WPF.Grid.GridAggregate" class="text-break">GridAggregate Enum
</h1>
  <div class="markdown level0 summary"><p>Specifies the type of aggregate to calculate over a group of values.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.WPF.Grid.html">C1.WPF.Grid</a></h6>
  <h6><strong>Assembly</strong>: C1.WPF.Grid.dll</h6>
  <h5 id="C1_WPF_Grid_GridAggregate_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public enum GridAggregate</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public Enum GridAggregate</code></pre>
  </div>
  <h3 id="fields">Fields
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    <thead>
    </thead></thead><tbody>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_Average">Average</td>
        <td><p>Returns the average value of the non-null cells in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_Count">Count</td>
        <td><p>Returns the count of non-null values in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_Custom">Custom</td>
        <td><p>Used in custom functions inheriting <a class="xref" href="C1.WPF.Grid.GridAggregateFunction.html">GridAggregateFunction</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_Maximum">Maximum</td>
        <td><p>Returns the maximum value in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_Minimum">Minimum</td>
        <td><p>Returns the minimum value in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_None">None</td>
        <td><p>No aggregate.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_Range">Range</td>
        <td><p>Returns the difference between the maximum and minimum values in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_Std">Std</td>
        <td><p>Returns the sample standard deviation of the values in the group (uses the formula based on n-1).</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_StdPop">StdPop</td>
        <td><p>Returns the population standard deviation of the values in the group (uses the formula based on n).</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_Sum">Sum</td>
        <td><p>Returns the sum of all values in the group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_Var">Var</td>
        <td><p>Returns the sample variance of the values in the group (uses the formula based on n-1).</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_Grid_GridAggregate_VarPop">VarPop</td>
        <td><p>Returns the population variance of the values in the group (uses the formula based on n).</p>
</td>
      </tr>
    </tbody>
  </table>
</div>
