https://issues.apache.org/bugzilla/show_bug.cgi?id=50755

           Summary: getCellFormula throws Not implemented yet on 2nd use
                    of =WORKDAY()
           Product: POI
           Version: 3.7
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: XSSF
        AssignedTo: [email protected]
        ReportedBy: [email protected]


Created an attachment (id=26634)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=26634)
sample .xlsx containing workday formula on a few rows

Similar to Bug 46537, but with what I think is a native Excel formula, WORKDAY.
This code (copied from that bug, but modified slightly), and the attached file,
should demonstrate the problem:

Sheet sheet = wb.getSheet("Sheet1");
for(Row aRow : sheet)
{
    Cell cell = aRow.getCell(1);
    String formula = cell.getCellFormula();
    System.out.println("formula: " + formula);
}

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to