Click here to Skip to main content
Click here to Skip to main content

Calculated Columns in .NET DataTables (C#)

By , 23 Jan 2013
 

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.

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.

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.

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)

About the Author

Melick
Sri Lanka Sri Lanka
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
SuggestionFormatting...mvpSandeep Mewara26 Aug '12 - 3:39 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 23 Jan 2013
Article Copyright 2013 by Melick
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid