Good Afternoon Fellas,

A little advice would be appreciated, I'm approaching a problem by which I need to write an agent which will go to a particular file directory, open an Excel Workbook (which already exists) and will then change the value of two cells (which are always the same cells) to be the current month (at the time of the agent running).

Unfortunately, this is a work project so VSTO is off-limits. ExcelDNA however, I have used before. I'm not looking for someone to 'do my work', but any suggestions of where to look or previous examples would be great.

I've had a poke around myself to no avail, if anyone could point me in a good direction to get started that would be great!

Much appreciated.

link|improve this question

1  
There are soo many examples for Excel-interop on Stackoverflow.. or google.. it`ll take you 2 minutes to cut&paste the code – Shai Jan 10 at 14:45
See, I thought that initially - but had no luck with examples that didn't include some VSTO reference. – AdamNumberFive Jan 10 at 14:49
1  
These links should provide some good information: stackoverflow.com/questions/175763/… stackoverflow.com/questions/1111935/c-sharp-and-excel-interop – Dan Jan 10 at 14:51
feedback

3 Answers

up vote 0 down vote accepted

Just thinking out loud with excel now having xml backed file format (zipped) it may be easier to make this change by parsing and rewriting the xml, or to use an xml transform [shudder].

Now the more supported way would be to use a VSTO but you say that is not available. If you look further into the parsing the file format be aware that it is a complex schema, you may find source out there that does the understanding for you.

$0.02

link|improve this answer
feedback

Excel-DNA is great if you want to make an Excel add-in in .NET, with user-defined function etc. But it sounds like you just want to automate Excel from an outside executable.

For this the easiest to directly install and reference the Primary Interop Assemblies (PIA) which you can find here: http://www.microsoft.com/download/en/details.aspx?id=3508, or you can use the brilliant version-independent interop assemblies in the NetOffice project.

In both cases you make a VB.NET or C# console app, then add a reference to the interop assemblies you've chosen, and away you go.

In C#, your method using NetOffice might start like this (I think it can be a bit cleaner in C# 4):

static void Test()
{
    // Initialize Api COMObject Support
    LateBindingApi.Core.Factory.Initialize();

    // start excel and turn off msg boxes
    Excel.Application excelApplication = new Excel.Application();
    excelApplication.DisplayAlerts = false;

    // add a new workbook
    Excel.Workbook workBook = excelApplication.Workbooks.Add();
    Excel.Worksheet workSheet = (Excel.Worksheet)workBook.Worksheets[1]; 

    worksheet.get_Range("A1").Value = "XXX";

    // save the book 
    string fileExtension = GetDefaultExtension(excelApplication);
    string workbookFile = string.Format("{0}\\Example01{1}", 
                       Application.StartupPath, fileExtension);
    workBook.SaveAs(workbookFile, Missing.Value, Missing.Value, Missing.Value,
               Missing.Value, Missing.Value, XlSaveAsAccessMode.xlExclusive);

    // close excel and dispose reference
    excelApplication.Quit();
    excelApplication.Dispose();
}
link|improve this answer
feedback

I can suggest OpenXml Sdk if you use Excel 97 or higher

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.