knowledgecenter-breadcrum

Knowledge Center

18 Mar, 2024

How to use aggregate in FetchXml

Posted on 18 Mar, 2024 by Shekhar Jain, Posted in Dynamics 365 Web Api Dynamics 365

Blogs

In this blog, we will learn how to use aggregate in FetchXml.

Available Aggregate

  • Count
  • CountColumn
  • Avg
  • Sum
  • Min 
  • Max

 

1. Count

It aggregates data based on specified conditions and returns a numerical value representing the count of records meeting those conditions.

Output:

2. CountColumn

This attribute helps group data based on the values in a chosen column.

Output:

3. Sum

The "sum" function is used to calculate the total sum of numerical values within a specified column or attribute.

Output:

4. Avg

The "avg" function calculates the average value of numerical data within a specified column or attribute.

Output:

5. Min

The "min" function retrieves the minimum value of numerical data within a specified column or attribute.

Output:

6. Max

The "max" function retrieves the maximum value of numerical data within a specified column or attribute.

Output:

 

Below are points to note that differ from a regular query.

  • Set the fetch element aggregate attribute to true.
  • Set the alias attribute for each attribute element.
  • Set the aggregate attribute for each attribute element 

Comment

This is a Required Field

Loading

Recent Updates

Blogs
01 Dec, 2025

Dynamics 365: Why One User Could Edit a Field and Another Couldn’t

Recently, we faced an issue in Dynamics 365 where the field was locked for one user but editable for another. The field…

READ MORE
Blogs
18 Nov, 2025

Building a Power Apps Code-First Application from Scratch: A Step-by-Step Guide

Introduction: Power Apps has long supported rapid app development with low-code/no-code tools. With Code-First Apps, developers can now create fully…

READ MORE
Blogs
16 Oct, 2025

Bug Logging in Azure DevOps

Logging bugs in Azure DevOps is an essential part of the software testing and development process. It allows teams to…

READ MORE