dieser befehl fügt in einen excel sheet an spalte 5 zeile 1 ÜM ein
Delphi-Quellcode:
excel:=createoleobject('excel.application');
excel.application.sheetsinnewworkbook:=stationABFL.count;
excel.workbooks.add;
for k:=1 to temp.count-1 do
begin
excel.sheets[k].name:='Abschnitt'+inttostr(k);
excel.sheets[k].cells[1,1].value:='TM='+temp[k];
excel.sheets[k].cells[1,5].value:='ÜM';
excel.sheets[k].cells[1,6].value:='DS';
excel.sheets[k].cells[1,7].value:='ÜP';
sieh dir mal meinen code an
du sagst excel nich in welches worksheet du die werte eintragen möchtest.