View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
jaf jaf is offline
external usenet poster
 
Posts: 300
Default Write Command Output

Hi Dan,
Write your own output routine.

delimiter=char(9)
Open filename for output as #1
for i=1 to 100
write #1, data, delimiter
next

Of course, you may want to add some more details. ;<)


--
John
johnf 202 at hotmail dot com


"Dan T" .(donotspam) wrote in message
...
| The write to text file command exports in CSV, is there a way to change
this so it writes to Tab Delimited?
|