Reputation: 311
How can I use this Excel formula
IF(W2<>"",NETWORKDAYS(V2,W2),"")
in Java to generate an Excel report?
Upvotes: 2
Views: 854
Reputation: 29629
Try Apache POI which reads/writes MS Office files. Check out the POI support for writing Excel formulas.
Upvotes: 2