Hello!

I'm using HSSF for reading excel tables. For example if I read one and make
an instance of Workbook and then just make a copy of my excel file via
Workbook.write(FileOutputStream out) method, the formulas in the file
doesn't work anymore.

Example:

      POIFSFileSystem fs = new POIFSFileSystem(new
FileInputStream("D:\\file.xls"));
      HSSFWorkbook wb = new HSSFWorkbook(fs);
      
      FileOutputStream out = new FileOutputStream("D:\\file (copy).xls");
      wb.write(out);
      out.close();

Actually I'm modifying some excel tables and how can I fix this with
formulas so they will work after writing the modified file to the disk?

Thanks for answers!

Tilen
-- 
View this message in context: 
http://www.nabble.com/formula-error-tf3897697.html#a11049394
Sent from the POI - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to