DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=35084>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=35084 Summary: Formula not cloned using cloneSheet Product: POI Version: 3.0-dev Platform: PC OS/Version: Windows 2000 Status: NEW Severity: critical Priority: P2 Component: HSSF AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] If I clone a sheet and try to get a cell that should contain a formula, I get a null. I'm using the latest CVS version (I needed DrawingRecord.clone() method). Sample code: FileInputStream fis = new FileInputStream("bug.xls"); HSSFWorkbook wb = HSSFWorkbook(fis); HSSFSheet s = wb.cloneSheet(0); HSSFRow r = s.getRow(0); HSSFCell c = r.getCell((short)0); return c; // returns null -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] Mailing List: http://jakarta.apache.org/site/mail2.html#poi The Apache Jakarta POI Project: http://jakarta.apache.org/poi/
