VBA code to VBA write to text file line by line Excel Macros Examples for writing to text files using VBA in MS Office Word, PowerPoint, Access, Excel 2003, 2007, 2010, 2013 and VBScript.
This Example VBA Program and function will help you to know how to write to text file line by line using Excel VBA.
Writing to a text file Line by line Using VBA
Here is the Procedure, Example VBA Syntax and Example VBA Macro code for writing to a text file in line by line. This will help you to know how to write to a text file line by line using VBA.VBA write to a text file line by line: Procedure
We will first open the text file for writing as append file with a file number. Then we will write to the file line by line using File Number.VBA write to a text file: Syntax
Here is the VBA code and syntax for Writing to a text file Using VBAstrFile_Path = "Your file Path" Open strFile_Path For Append As #1 Write #1, “You can write your required text here” Write #1, “You can write your required text here” Write #1, “You can write your required text here”
VBA write to a text file Line by line: Example Macro Code
Following is the sample Excel Macro to write to a text file by line by line using Excel VBA.Sub VBA_write_to_a_text_file_line_by_lline() Dim strFile_Path As String strFile_Path = "C:temptest.txt" ‘Change as per your test folder and exiting file path to Append it. Open strFile_Path For Append As #1 Write #1, "This is my sample text" Write #1, "This is my sample text" Write #1, "This is my sample text" Close #1 End Sub
Instructions to run the VBA Macro code to write to a text file Line by line
Please follow the below steps to execute the VBA code to write to a text file line by line using Excel VBA Editor.- Step 1: Open any Excel workbook [ To Open MS Excel: Go to Start menu, All programs and select Excel from MS Office OR You can simply type excel in the run command (Press Windows+ r key to open run dialog)]
- Step 2: Press Alt+F11 to open the VBA Editor [You can also open the VBE from the Developer Tab in the Excel ribbon]
- Step 3: Insert a code module [Go to insert menu in the VBE and then press Module OR Simply press the Alt+i then m to insert code module]
- Step 4: Copy the above Example Macro code and paste in the code module which have inserted in the above step
- Step 5: Change the folder path as per your testing folder structure and existing file path.
- Step 6: Now press the F5 to Run and Execute the Macro.
- You can press the F8 to debug the macro line by line and see the result immediately.
Once you are done with the macro execution, now you can observe that a text file in the test folder. And the text file in the folder is appended with the data line by line which you have mentioned in the code.
VBA write to a text file Line by line Macro Explained
Here is the detailed explanation of the Excel macro to write to text file using VBA.- Starting the program and sub procedure to write VBA code to write the data to a text file.
- Declaring the strFile_Path variable as String Data Type to store the text file path.
- Assigning the File path to the variable strFile_Path.
- Opening the text file for Append with FileNumber as 1.
- Writing to the sample text to the File using FileNumber and Write Command.
- Closing the File using FileNumber.
- Ending the Sub procedure to write VBA Code to write the data to a text file.
Here is the commented macro code for writing to text file and line by line it using VBA.
‘Starting the program and sub procedure to write VBA code to write the data to a text file Line by line.
Sub VBA_write_to_a_text_file()
‘Declaring the strFile_Path variable as String Data Type to store the text file path.
Dim strFile_Path As String
‘Assigning the File path to the variable strFile_Path.
strFile_Path = “C:temptest.txt”
‘Opening the text file for Append with FileNumber as 1.
Open strFile_Path For Append As #1
‘Writing to the sample text to the File using FileNumber and Write Command.
Write #1, “This is my sample text”
‘Closing the File using FileNumber.
Close #1
End Sub
‘Ending the Sub procedure to write VBA Code to write the data to a text file Line by line.