I write these code to filter some data. Then on the 11th column there the value "1" to make counter and show it on this value" lblAusenteTotal.Text".
What I need to learn?
How can I make it to counter blank or NULL line of the 11th column.
int sum = 0;
for (int i = 0; i < dvgDatas.Rows.Count; ++i)
{
sum += Convert.ToInt32(dvgDatas.Rows[i].Cells[11].Value);
lblResult.Text = " " + sum.ToString();
VulpesPosted Feb 6, 2015, 3:15 PM
http://www.c-sharpcorner.com/Forums/Thread/284737/need-to-count-my-row.aspx
Mfwamba TshimangaPosted Feb 6, 2015, 9:17 AM
Mfwamba TshimangaPosted Feb 6, 2015, 9:00 AM
See what I do. Curiosly, your codes DOESNT WORKS.
Pranay RanaPosted Feb 6, 2015, 8:30 AM
String.IsNullOrEmpty(Convert.ToString(dvgDatas.Rows[i].Cells[11].Value))