Index: HSSFSheet.java =================================================================== RCS file: /home/cvspublic/jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java,v --- HSSFSheet.java 1.21 +++ HSSFSheet.java @@ -1024,0 +1024,10 @@ + /** + * set active cell position + * @param row row number at the cell + * @param col column number at the cell + */ + public void setActiveCell(int row ,short col){ + Sheet sheet = getSheet(); + sheet.setActiveCellRow(row); + sheet.setActiveCellCol(col); + }