write data to an excell file [message #42482] |
Wed, 09 February 2005 01:51 |
Matthias Demuzere
Messages: 9 Registered: April 2004
|
Junior Member |
|
|
Dear,
I have a problem with writing data to an excell datasheet. My aim is to
write several columns to 1 same datasheet instead of writing the different
columns to different datasheets.
This is what i did untill now:
openw,10,'C:\RSI\IDL56SE\Output-Escompte\MarseilleObservatoi re.xls'
for hour=0,192 do begin
printf,10,xtt(hour)
endfor
close,10
openw,11,'C:\RSI\IDL56SE\Output-Escompte\MarseilleObservatoi re_T_E.xls'
for kk=0,192 do begin
printf,11,Tk(kk)
endfor
close,11
Now I woulf like for example print in the first column the time (hour),
expressed by kk, going from 0 to 192 hours.
In the second column of the same datasheet, i would like to write xtt (hour)
and in the third column of the same datasheet, i would like to write
Tk(hour)
Can anyone help me with that?
Kind Regard,
Matthias Demuzere
--
************************************************************
************************************************************
Physical and Regional Geography Research Group
Redingenstraat 16
B-3000 Leuven
Belgium
Tel: +32 16 326453
Fax: +32 16 326400
E-mail: Matthias.Demuzere@geo.kuleuven.ac.be
|
|
|