On Wed, 15 Oct 2008, Hardie82 wrote:
Hi. Is it possible to get a cell only by the sheetname and the reference without iterate over the rows?
CellReference should help: http://poi.apache.org/apidocs/org/apache/poi/hssf/util/CellReference.html wb.getSheet(sheetName).getRow(ref.getRow()).getCell(ref.getCol()) Nick --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
