Hi,
I found 2 anothers bugs :
Concatenate is not working (but I can use &)
and the IF raise file error on xls and #N/A!
procedure TFPrinc.Button2Click(Sender: TObject);
var xls:TXLSReadWriteII4;
sh:TSheet;
begin
xls:=TXLSReadWriteII4.Create(nil);
sh:=xls.Sheets[0];
sh.AsFormula[0,0]:='2+2';
sh.AsFormula[0,1]:='concatenate("Total : ";A1)'; // bug is here, you get #VALUE!
sh.AsFormula[0,2]:='"Total : "&A1'; // work : Total : 4
sh.AsFormula[0,3]:='IF(A1>4;A1;"")'; // when open xls, error message "data lost" and #N/A! in the cell
xls.Filename:='test.xls';
xls.Write;
xls.Free;
end;
trouble with concatenate and file error with IF
-
- Posts: 5
- Joined: Thu Jan 08, 2009 1:04 pm
Re: trouble with concatenate and file error with IF
Hello
The problem is located and will be fixed in the next update.
The problem is located and will be fixed in the next update.
Lars Arvidsson, Axolot Data
-
- Posts: 5
- Joined: Thu Jan 08, 2009 1:04 pm
Re: trouble with concatenate and file error with IF
Hi larsa,
when this update will be available ?
thanks.
when this update will be available ?
thanks.