currently i'm doing this:
string cellValue = sheet.get_Range("A12", _missing).Value2.ToString();
this works but i really need to select a cell by row and column index.
i get a null exception when i try
string cellValue = ((Range)sheet.Cells[row, column]).Value2.ToString();
any ideas?