Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6045385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:07:08+00:00 2026-05-23T07:07:08+00:00

i have a dataset which im using to calculate some sales figures, this data

  • 0

i have a dataset which im using to calculate some sales figures, this data set has about 15 columns i want to add a new row to the end of the dataset to calculate the total of each column. heres an example of what the dataset looks like

NAME | GP   | ORD_GP | EXP   | TOTAL GP
a      206     48      -239     15 
b      0       27       0        27

so what i want to be able to do is add another row at the end which will calulate the sum of each row so it would look something like

NAME | GP   | ORD_GP | EXP   | TOTAL GP
a      206     48      -239     15 
b      0       27       0       27
TOTAL  206     75       -239    42

so far i have

    ds.Tables[0].Rows.Add("TOTAL");
    foreach (DataColumn dc in ds.Tables[0].Columns)
    {
      // add upp column data and put into toal field
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T07:07:09+00:00Added an answer on May 23, 2026 at 7:07 am

    Have a look at the DataTable.Compute method:

    private void AddTotalRow(DataTable dt)
    {
        DataRow dr = dt.NewRow();
        dr["NAME"] = "TOTAL";
        dr["GP"] = dt.Compute("Sum(GP)", null);
        dr["ORD_GP"] = dt.Compute("Sum(ORD_GP)", null);
        dr["EXP"] = dt.Compute("Sum(EXP)", null);
        dr["TOTAL_GP"] = dt.Compute("Sum(TOTAL_GP)", null);
        dt.Rows.Add(dr);
    }
    

    You would call this function only once, for example:

    AddTotalRow(ds.Tables[0]);
    //Now the first DataTable in your DataSet has an additonal record with the total values
    

    Edited according to your new informations

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have a dataset which has two columns that I'd like to compare.
I have a web service which has a generic function that returns a dataset
I have a dataset that has two tables in it. I want to do
I have a DataSet consisting of XML data, I can easily output this to
I have a couple of columns of data in an excel sheet which I
I have this certain method(snippet below) for which I want to get the XML
I'm using vb.net 2010. I have a DataSet with a Table and data. MyDataSet1
I've been getting some odd behavior using a foreach today. I have a dataset
I have an ADO.NET dataset which is set by a certain query, say SELECT
Let's say I have a dataset, which can be neatly classified using weka's J48

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.