How to focus a cell in Excel VSTO using C# or to select first cell using C# in VSTO?
To select the A2 cell, for example:
Excel.Worksheet Worksheet = excel.ActiveWorkbook.ActiveSheet; Worksheet.get_Range([1,2], System.Reflection.Missing.Value).Select();