C#: Getting a cell's value with Excel.interop

前端 未结 3 2050
不知归路
不知归路 2021-01-13 21:29

I want to get the value of a cell from an excel file with a software in C#; NOT THE TEXT, because the text depend of the size of the column, and I must not change it myself,

3条回答
  •  清歌不尽
    2021-01-13 22:19

    Also:

    newWS = (Microsoft.Office.Interop.Excel.Worksheet)newWB.Worksheets[2];
    newWS.Select();
    string ExcelCellContent = (string)newWS.Cells[2, 1].Value2;
    

    Usage:

    if((string)(ws_Varsheet.Cells[x, y].Value2 != "")
    {
       // process
    }
    

提交回复
热议问题