I have renamed a cell in Excel from "A1" to "CustomCellName". The following code will not locate the cell.
Workbook wb = new Workbook();
wb.Open("Book1.xls");
Worksheet ws = wb.Worksheets[0];
int row, column;
CellsHelper.CellNameToIndex("CustomCellName", out row, out column);
Is this supported?