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.

link|improve this question

44% accept rate
how are you determining that value doesn't have a value? – Conrad Frix Jul 8 '11 at 16:43
1  
Why are you assigning value to ws.Cells[row, clmn] twice? – comecme Jul 8 '11 at 17:28
feedback

1 Answer

The .Text parameter will only have a value if the contents are text. Generally you want to use .Value.ToString() instead.

You mentioned getting the value from another sheet. Where do you set the sheet? You should be able to do something like wb.Sheets[0].Cells[row,clmn].Value.ToString() (assuming you want data from the first sheet).

Looking at this code you are copying items cell by cell. It's much easier to use the Select/Copy/Paste functionality instead:

Range r1 = wb.Sheets[0].Cells["C1", "E5" ]; // define corners of selection square
Range r2 = wb.Sheets[1].Cells["A1"];        // destination
r1.Select();
r1.Copy(r2);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.