TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Paul Rajs
NA
641
146.9k
How to Calculate Decimal values of All Rows From a Table in
Feb 27 2017 2:56 AM
hi Developers ,
i want to know How to Calculate Decimal values of All Rows From a Table in C# .
already i have done following query
SqlConnection con = Connection.DBConn();
DataTable dt = new DataTable();
SqlCommand cmd = new SqlCommand("[select * from Sales where Totalsales='"Ses_Sales""']", con);
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(dt);
string sum_QuantityDespatched = dt.Compute("Sum(quantitydespatched)", "").ToString();
above query is working fine. But the problem is it is only working with Integer values.
if the values of table have 3 rows
Value = 1=10
Value = 2=20.
Value = 3=30
i got the my expected output is like = 60:
but if i give the decimal values like this
Value = 1=10.50
Value = 2=20.70
Value = 30=30.00
My expected output is 61.20 . but it throws error.
i want to calculate all rows of a table with Decimal Values . How can i done this task .
anyone know how to done this task please suggest me
Thanking You
Paul.S
Reply
Answers (
5
)
How to assign tasks on a Round Robin using visual studio.
Gridview Problem