Is this what you are looking for?
----
import org.apache.poi.ss.util.CellReference;
//...
CellReference cr = new CellReference("AH63");
System.out.println("rowIx=" + cr.getRow() + " colIx=" + cr.getCol());
System.out.println("string parts=" +
Arrays.asList(cr.getCellRefParts()));
----
output:
rowIx=62 colIx=33
string parts=[null, 63, AH]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]