Sir,
how to store .net gridview group sum value in variable.
need to store group value (amount) in variable or in a lnleLastDayBalance.text.
Please help.
private void helper_Bug(string groupName, object[] values, GridViewRow row)
{
if (groupName == null) return;
row.BackColor = Color.Bisque;
row.Cells[0].HorizontalAlign = HorizontalAlign.Center;
row.Cells[0].Text = "[ Summary for " + groupName + " " + values[0] + " ]";
if values(0) == "Cash B/F" {
lblLastDayBalance.Text = "amount of group value"
}
}
https://stackoverflow.com/questions/13134427/grouping-data-in-asp-net-gridview/68782375#68782375