
Write a Excel File Without Excel App
If you just wish to write data which Excel can import easily, then you
can print to a file using tab delimited values and Excel will open
this file and distribute the data correctly into separate columns
e.g.
Open "filename" For Append As 1
.
.
Print #1, variable1 & vbTab & variable2 & vbTab & variable3
.
.
the variables can be numbers or strings
Quote:
>I would write a Excel File (.XLS) but without using app Excel App.