Hi
i am using ultra win grid 8.0 in my VB.NET windows application. I have a column which displays the integer values. I am populating the grid on click of a button.
I want to display the sum of all the values in a column in the last row of that column. The sum should be calculated dynamically whenever the values in the Grid changes .
Is there any property or Formula to calculate the sum of all the values in a column ?
Thanks in Advance.
Ashok
Yes, add a Summary to the Summaries collection of the appropriate band. For example,
ultraGrid1.DisplayLayout.Bankds(0).Summaries.Add(SummaryType.Sum, col, SummaryPosition.Blah, Nothing)
You have control as to where the summaries are displayed and how they are formatted. By default a sum will display as "Sum = 12345".
Thanks a lot...... It s working fine..
It is displaying the sum as Sum = 12345
i want to remove the "Sum = " and want only the value to be displayed. How to remove "Sum = "
Thanks