/*
Create: Visual C# - Console Application Project
Right click on: References
Select: Add references...
Select: com
Select: Microsoft Office 12.0/15.0/16.0 Object Library
In References list you will see: Microsoft.Office.Interop.Excel
*/
using System;
using Excel = Microsoft.Office.Interop.Excel;
namespace WorkWithExcel
{
class ExcelClass
{
static void Main(string[] args)
{
Excel.Application excelApp = new Excel.Application();
excelApp.Visible = true;
string WorkbookFileName = "e:/test.xlsx";
Excel.Workbook excelWorkbook = null;
try
{
excelWorkbook = excelApp.Workbooks.Open(WorkbookFileName);
Excel.Sheets excelSheets = excelWorkbook.Worksheets;
string currentSheet = "Sheet1";
Excel.Worksheet excelWorksheet = (Excel.Worksheet)excelSheets.get_Item(currentSheet);
excelWorksheet.Range["C4..D7"].Value2 = 5000;
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
}