VBA to Save Row to text file, then move to next row and continue.

VanderBoon

New Member
Joined
Aug 19, 2021
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have an excel file of which I need to export into multiple text files. I need to export columns B onwards into a text file (ignoring blank cells) and finish with 2 specific text strings, then save as the value in column A. It then needs to do the same for each row underneath (up to 500), saving a unique file each time.

Below is how the final text file should look, the last 2 lines are constant.

R000001.txt:

SCAN,Part Number,FINAL LABEL
COMPARE,Part Number ,PLBLTRNS.txt
COMPARE,partnumber1,PLBLTPK.txt
COMPARE,Partnumber2,PLBLTPK.txt
END,END,END,
END,,

I'm a complete novice at VBA and so far have managed to get a code to a point where it will create the file with one line but with a fixed name. I'm sure there's a simple solution to this, my current code is below:

VBA Code:
Sub WriteToRecipes()

   Dim Path As String
   Dim filename As String
   Dim FileNumber As Integer
   Dim LC As Integer
   
   Dim i As Integer

    LC = Worksheets("Sheet4").Cells(1, Columns.Count).End(xlToLeft).Column + 1 'columns
    
    Path = "filepath\test.txt"
    FileNumber = FreeFile
    
    Open Path For Output As FileNumber
    
   '---------------------- Below code writes a recipe
   For i = 1 To LC
    
    If i <> LC Then
    
        Print #FileNumber, Cells(i); vbNewLine;
    Else
        Print #FileNumber, "END," & "END,"; "END,"
    End If
    
    Next i
    
    Print #FileNumber, "END,,";

   Close FileNumber
   
   '----------------------
 
   Shell "notepad.exe " & Path, vbNormalFocus
        
End Sub

Any help would be much appreciated!

Ewan
 

Attachments

  • ExcelVBAQuestion.PNG
    ExcelVBAQuestion.PNG
    19.5 KB · Views: 56

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hi Vanderboon, Welcome to Mr.Exel.

If I understand correctly, the number of filled columns determines how many lines of text will eventually appear in the respective newly created text files. Is this correct?
 
Upvote 0
Hi GWteB,

Thanks for replying. That's correct, ignoring column A - that contains what I need the file to be called. They will range from 2-12 lines.
 
Upvote 0
Try the below. Bear in mind that the validity of the file names in column A is not checked.
VBA Code:
Public Sub Vanderboon()

    Const OUTPUTPATH As String = "C:\Users\Vanderboon\Documents\"   ' <<< change folder to suit

    Dim FullFileName As String, FileNumber As Long
    Dim SrcFileNames As Range, arr As Variant
    Dim c As Range, i As Long

    With ThisWorkbook.Worksheets("Sheet4")           ' <<< change sheet name to suit

        Set SrcFileNames = .Range("A1:A" & .Cells(.Rows.Count, "A").End(xlUp).Row)

        For Each c In SrcFileNames

            arr = c.Resize(1, c.Cells(1, .Columns.Count).End(xlToLeft).Column)
            FullFileName = OUTPUTPATH & arr(1, 1) & ".txt"
            FileNumber = FreeFile
            Open FullFileName For Output As FileNumber

            For i = 2 To UBound(arr, 2)
                Print #FileNumber, arr(1, i)
            Next i
            Print #FileNumber, "END,END,END," & vbNewLine & "END,,"

            Close FileNumber
        Next c
    End With
End Sub
 
Upvote 0
Solution
That worked perfectly! Thanks a lot, I've spent days trying to figure it out!
 
Upvote 0
You are welcome and thanks for letting me know.
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,046
Members
449,063
Latest member
ak94

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top