This launches a fresh Excel workbook:
Excel.Application oXL;
Excel._Workbook oWB;
oXL = new Excel.Application();
oXL.Visible = true;
oWB = (Excel._Workbook)(oXL.Workbooks.Add( Missing.Value ));
However, what if one wants to either...
-- 'GetObject' (in the familiar Automation paradigm) to a workbook that's already loaded and open on the screen?, or
-- access and write data to a closed workbook by path name?
Both of which are doable by old standards. Preferably the latter although I'm not a chooser right now. Thanks for any help.