Writing to a .xls file using UTL_FILE package
Hi,
Can anyone help me out on writing a .xls file using the UTL_FILE package? I am able to write a .txt and .csv file. But .xls file I am not able to do .. the fields are not coming properly if I use a comma separated approach- all the data are coming in the first column itself.
I was trying the following..
v_buffer := '"'||rec.dept||'","'||rec.students||'"';
UTL_FILE.PUT_LINE(v_fh, v_buffer);
Any help in this regard will be appreciated. Thanks in advance.
Regds,
Abhi