Append character to cell & export column range as a 1 line text file

mkrautler

New Member
Joined
Dec 4, 2019
Messages
16
Office Version
  1. 365
  2. 2016
  3. 2013
Platform
  1. Windows
I have a csv file that I need to manipulate so that I can imported into another application. I need to add a comma & a space to the end of each cell with data in it (minus the header row) & then export the entire range into a single line in a text file. For example, the contents of column A in the attached file should be exported into a txt file looking like below. The amount & data in column A will always change and I am having issues even saving the file as a text file. When I use the code below it will create a text file but with no data in it, any help would be greatly appreciated!

105J1V3, 10RHPV2, , 10T0C53, 10WXMM3, 115J1V3, 11WXMM3, 123B043, 135J1V3, 13GXMN3, 1485Z43, 14C9LN3, 15605K3

VBA Code:
Private Sub Workbook_Open()

Dim rng As Range
    Set rng = ActiveSheet.UsedRange
    
    Set rng = rng.Offset(1).Resize(rng.Rows.Count - 1)
    
    rng.Select
    
Dim c As Range
    For Each c In Selection
    If c.Value <> "" Then c.Value = c.Value & ", "
Next

'object to use as folder
Dim fld As Object
Set fld = CreateObject("Scripting.FileSystemObject")

'using create text file method
Dim myFile As Object
Set myFile = fld.CreateTextFile("C:\temp\MKrautler\Tags.txt", True)
    
End Sub
 

Attachments

  • servicetag-VBA-code-screenshot.jpg
    servicetag-VBA-code-screenshot.jpg
    47.3 KB · Views: 6

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
After you've created a text stream using the CreateTextFile method, you'll need to write to the text stream...

VBA Code:
myFile.write Join(Application.Transpose(rng))

Then you should close the text stream...

VBA Code:
myFile.Close

However, here's another way...

VBA Code:
Option Explicit

Private Sub Workbook_Open()

    ExportRangeToTextFile
   
End Sub

Private Sub ExportRangeToTextFile()

    Dim data As Variant
    With ThisWorkbook.Worksheets("Sheet1") 'change the sheet name accordingly
        data = .Range("A2", .Cells(.Rows.Count, "A").End(xlUp)).Value
    End With
   
    Dim fso As Object
    Set fso = CreateObject("Scripting.FileSystemObject")
   
    Dim ts As Object
    Set ts = fso.createtextfile("C:\temp\MKrautler\Tags.txt", True)
   
    ts.write Join(Application.Transpose(data), ", ")
   
    ts.Close

End Sub

Note that the code will leave your worksheet unchanged.

Hope this helps!
 
Last edited:
Upvote 1
Solution
Here is a power query solution to put the data into a sheet

Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table3"]}[Content],
    #"Transposed Table" = Table.Transpose(Source),
    #"Merged Columns" = Table.CombineColumns(#"Transposed Table",{"Column1", "Column2", "Column3", "Column4", "Column5", "Column6", "Column7", "Column8", "Column9", "Column10", "Column11", "Column12"},Combiner.CombineTextByDelimiter(",", QuoteStyle.None),"Merged")
in
    #"Merged Columns"
 
Upvote 0
Here is a power query solution to put the data into a sheet

Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table3"]}[Content],
    #"Transposed Table" = Table.Transpose(Source),
    #"Merged Columns" = Table.CombineColumns(#"Transposed Table",{"Column1", "Column2", "Column3", "Column4", "Column5", "Column6", "Column7", "Column8", "Column9", "Column10", "Column11", "Column12"},Combiner.CombineTextByDelimiter(",", QuoteStyle.None),"Merged")
in
    #"Merged Columns"
I didn't try this solution yet since another solution already gave me what I was looking for. I will definitely keep the code, if you don't mind & use it at a later date. Thanks for replying!
 
Upvote 0
After you've created a text stream using the CreateTextFile method, you'll need to write to the text stream...

VBA Code:
myFile.write Join(Application.Transpose(rng))

Then you should close the text stream...

VBA Code:
myFile.Close

However, here's another way...

VBA Code:
Option Explicit

Private Sub Workbook_Open()

    ExportRangeToTextFile
  
End Sub

Private Sub ExportRangeToTextFile()

    Dim data As Variant
    With ThisWorkbook.Worksheets("Sheet1") 'change the sheet name accordingly
        data = .Range("A2", .Cells(.Rows.Count, "A").End(xlUp)).Value
    End With
  
    Dim fso As Object
    Set fso = CreateObject("Scripting.FileSystemObject")
  
    Dim ts As Object
    Set ts = fso.createtextfile("C:\temp\MKrautler\Tags.txt", True)
  
    ts.write Join(Application.Transpose(data), ", ")
  
    ts.Close

End Sub

Note that the code will leave your worksheet unchanged.

Hope this helps!
That helped tremendously, thank you so much!! I definitely appreciate it.
 
Upvote 0

Forum statistics

Threads
1,214,654
Messages
6,120,758
Members
448,991
Latest member
Hanakoro

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