我使用C#& Excel Intropt.dll用于我的项目
我想打开我的xlsx文件并为Sheet1中的所有单元格添加一个值(例如“1”)。
我怎样才能实现这个目标?
像这样:
12 14 19 22
81 91 26 62
结果:
13 15 20 23
82 92 27 63
答案 0 :(得分:2)
您可以使用此代码段。 Cells [1,1]是左上角的第一个单元格。这将获得第一张表,但您也可以按名称引用它们。
Excel.Application xlApp;
Excel.Workbook xlWorkBook;
Excel.Worksheet xlWorkSheet;
object misValue = System.Reflection.Missing.Value;
xlApp = new Excel.ApplicationClass();
xlWorkBook = xlApp.Workbooks.Open(_filename, 0, true, 5, "", "", true, Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
//You can loop through all cells and use i and j to get the cells
xlWorkSheet.Cells[1,1].Value2 = Convert.ToInt32(xlWorkSheet.Cells[1,1].Value2) + 1;
xlWorkBook.Close(false, misValue, misValue);
xlApp.Quit();