devxlogo

Retrieve Totals from a Dataset Without Looping

Retrieve Totals from a Dataset Without Looping

Have you ever looped through the entire dataset to get the totals you need to put in the footer? The DataTable.Compute method eliminates this hassle by retrieving commonly performed arithemetic operations like sum, avg,, etc.

For example:

int iTotal = table.Compute("Sum(amount)", String.Empty);

The preceding code computes the sum of the amount column. You can even filter using the second parameter:

int iTotal = table.Compute("Sum(amount)", "amount > 5" );

Note: You will still need to loop through the items in the ItemDataBound event to assign it to the footer.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist