DeepVeen
DeepVeen

Reputation: 311

Java code for generating Excel report with formula for cells

How can I use this Excel formula

IF(W2<>"",NETWORKDAYS(V2,W2),"")   

in Java to generate an Excel report?

Upvotes: 2

Views: 854

Answers (2)

Mike
Mike

Reputation: 1899

You can also Try JXL api.

http://jexcelapi.sourceforge.net/

Upvotes: 0

krock
krock

Reputation: 29629

Try Apache POI which reads/writes MS Office files. Check out the POI support for writing Excel formulas.

Upvotes: 2

Related Questions