Search found 3 matches

by portu
Mon Sep 23, 2013 9:50 am
Forum: XLSReadWriteII 3/4/5
Topic: [XLSReadWrite4] Formulas used breaks my document
Replies: 8
Views: 14758

Re: [XLSReadWrite4] Formulas used breaks my document

Hi, thank you for your help.

The new update (V5) is it free for those who have purchased the V4 ?

Regards.
by portu
Fri Sep 20, 2013 10:37 am
Forum: XLSReadWriteII 3/4/5
Topic: [XLSReadWrite4] Formulas used breaks my document
Replies: 8
Views: 14758

Re: [XLSReadWrite4] Formulas used breaks my document

This is a short test that doesn't work : procedure TestXls; var DestXLSDoc : TXLSReadWriteII4; begin DestXLSDoc := TXLSReadWriteII4.Create(nil); try DestXLSDoc.Version := xvExcel2007; DestXLSDoc.Filename := 'c:\test.xlsx'; DestXLSDoc.Read; DestXLSDoc.Sheet[0].Rows.AddIfNone(0,1); DestXLSDoc.Sheet[0...
by portu
Fri Sep 20, 2013 9:18 am
Forum: XLSReadWriteII 3/4/5
Topic: [XLSReadWrite4] Formulas used breaks my document
Replies: 8
Views: 14758

[XLSReadWrite4] Formulas used breaks my document

Hi all, I try to write a formulas into the cell. I can save the file but if I open this from Excel, Excel tell me the file contains a bad character. The problem come of this function : NETWORKDAYS . ... DestXLSDoc.Sheet[0].AsFormula[40,DestRow] := 'IF(OR(A'+DestRealRow+'=""; ISTEXT(A'+Dest...