Apr 10, 2011 #1 TimPen Technical User Mar 28, 2011 41 ZA To write to a csv file I use: intFile = FreeFile Open "C:\Output.csv" For Output As #intFile If the file already exists, how do I add to it?
To write to a csv file I use: intFile = FreeFile Open "C:\Output.csv" For Output As #intFile If the file already exists, how do I add to it?
Apr 10, 2011 Thread starter #2 TimPen Technical User Mar 28, 2011 41 ZA changing Output to Append works Open "C:\Output.csv" For Append As #intFile Upvote 0 Downvote