Click here to Skip to main content
15,885,278 members
Articles / Programming Languages / C#

Calculated Columns in .NET DataTables (C#)

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
23 Jan 2013CPOL 42.6K   7   1
Adding Calculated Columns in .NET DataTables.

Recently I had a requirement to add Calculated Columns to a DataTable. For example, I’m only providing Amount and Quantity. Then discount will be calculated automatically.

C#
String Discount = ".1";
DataTable workTable = new DataTable("Customers");

DataColumn workCol = workTable.Columns.Add("ID", typeof(Int32));
workTable.Columns.Add("UnitPrice", typeof(Double));
workTable.Columns.Add("Quantity", typeof(Int16));
workTable.Columns.Add("Total", typeof(Double));
workTable.Columns.Add("Discount", typeof(Double));

workTable.Columns["Total"].Expression = "UnitPrice*Quantity";
workTable.Columns["Discount"].Expression = String.Format("Total*{0}",Discount);

Later you can bind the DataTable to a GridView if you need.

C#
dataGridView1.DataSource = workTable;
dataGridView1.Update();

Special note:

But my requirement was to update the Column Expression dynamically in the runtime. For an example Discount will be change according to the total amount. Therefore this method can not cater that requirement since  expression is fixed with the discount.

Thus I update the Column Expression in dataGridView1_DataBindingComplete and invalidate the control for force data panting.

C#
Double RunningSum = 0;
String ValDiscount = "50";
workTable.Columns["ValueDis"].Expression = 
   String.Format("{0}/{1}*Total", ValDiscount, RunningSum.ToString());
dataGridView1.Invalidate();

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Sri Lanka Sri Lanka
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
SuggestionFormatting... Pin
Sandeep Mewara26-Aug-12 3:39
mveSandeep Mewara26-Aug-12 3:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.