I am using c# to read the value of particular cell of excel sheet. But as per my code I am not getting any value..
My code for getting the cell value is:
foreach (DataRow dr in sourceds.Tables[0].Rows)
{
while (clmn < dr.ItemArray.Count())
{
value = ((Microsoft.Office.Interop.Excel.Range)ws.Cells[row,clmn]).Text.ToString();
ws.Cells[row, clmn] = value;
ws.Cells[row, clmn] = value;
clmn++;
}
row++;
}
wb.Save();
Here I am reading the cell from other sheet and want to insert that value in other sheet. but I am not getting any value of "value"..
please help.
valuedoesn't have a value? – Conrad Frix Jul 8 '11 at 16:43valuetows.Cells[row, clmn]twice? – comecme Jul 8 '11 at 17:28