Excel tip: Write data to a textfileDate: 5 september 2001The following code will write data to a text file. If the file doesn't exist yet, it will be automaticly created. The original text will be replaced every time the code is run. Copy-paste friendly code: Sub WriteToTextFile()
' writes data to a text file ' if the file does not exists, it will be created. Dim iFileNumber As Long Dim strData As String Dim strFileName As String iFileNumber = FreeFile() strData = "Test data" 'the text written in the file strFileName = "C:\test.txt" ' the text file Open strFileName For Output As #iFileNumber Print #iFileNumber, strData Close #iFileNumber End Sub « back | ||
Home
Privacy Policy
Cookie Policy
EULA
Download
All added Excel tools
Sitemap
Contact Us
©1999-2024 ∙ ASAP Utilities ∙ A Must in Every Office BV ∙ The Netherlands
Empowering Excel Users Worldwide for 25 Years |