Thread: Append text
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Jeff Jeff is offline
external usenet poster
 
Posts: 921
Default Append text

Hi,

I am writing a string to an existing csv file.
I have the csv file opened and I want to append text to the csv file. How
is this done

For i = 1 to 100
Write #1, Array(i) 'Write this to the end of the csv file
next i

The csv file is very large - around 100mb

Thanks for your help on this