Converting txt files to CSV files and Related Problem

ANONYMOUS123456

Board Regular
Joined
Jul 3, 2016
Messages
85
Hello Everyone,
I am converting 500 text files to CSV files by just changing the extension from .txt to .csv. The problem is, the the data in the text file is splitted into multiple columns of the first row of csv file. My objective is, when I convert the text file, then all of the data of text file should stay on A1 cell of the resulted CSV file. Can I achieve this objective ?
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Please provide examples of the data in the files and example of how you want it to look in Excel.
 
Upvote 0
Please provide examples of the data in the files and example of how you want it to look in Excel.

I have attached the snapshot of Text file and the required output CSV file.

Snpashot of Text File:


wi7ad2.png

Snapshot 1




Snapshot of required CSV file: All the data of text file should stay in A1 cell after conversion of text file to CSV file as should below.


xbd1jm.png

Snapshot 2



But The problem is, when I convert the text file then the data in the text file is splitted into multiple columns of the CSV file which I don't want. I have attached the snapshot below... The data is splitted from A1 to K1 which is problem and I want to avoid that. I want all of the data of text file into A1 cell after conversion from text file to CSV file as shown in Snapshot 2.


2vvt01y.png
Snapshot 3​
 
Upvote 0
CSV = Comma Separated Values

Any commas in your text file will start a new column when imported into Excel. If you want to avoid this then I think you need to use a macro like this:

Code:
Option Explicit
Public Sub ImportTextWithReference()

Const sourceFolder = "C:\Import\" ' Change to the import folder

Dim nextFile As String
Dim nextRow As Long
Dim fso As Object
Dim ts As Object

Set fso = CreateObject("Scripting.FileSystemObject")

Application.ScreenUpdating = False

nextRow = 0
nextFile = Dir$(sourceFolder & "*.txt") ' Change to the right file extension
Do Until nextFile = ""
    nextRow = nextRow + 1
    Cells(nextRow, 1).Value = nextFile
    Set ts = fso.OpenTextFile(sourceFolder & nextFile)
    Cells(nextRow, 2).Value = ts.ReadAll
    ts.Close
    nextFile = Dir$
Loop

Application.ScreenUpdating = True

End Sub

WBD
 
Upvote 0
Try this

Code:
Sub openText()

'Go to tools>>Reference>> tick "Microsoft Scripting Runtime"


Dim fso As Scripting.FileSystemObject
Dim ts As Scripting.TextStream
Dim sText As String


Set fso = New Scripting.FileSystemObject
Set ts = fso.OpenTextFile("Input Path \123.txt")

  sText = ts.ReadAll
  Sheet1.Range("A1") = sText
On Error Resume Next
  ActiveWorkbook.SaveAs Filename:="Output Path\qqqq.csv", FileFormat:=xlCSV, _
        CreateBackup:=False
  ActiveWorkbook.Close
        
End Sub
 
Upvote 0
CSV = Comma Separated Values

Any commas in your text file will start a new column when imported into Excel. If you want to avoid this then I think you need to use a macro like this:

Code:
Option Explicit
Public Sub ImportTextWithReference()

Const sourceFolder = "C:\Import\" ' Change to the import folder

Dim nextFile As String
Dim nextRow As Long
Dim fso As Object
Dim ts As Object

Set fso = CreateObject("Scripting.FileSystemObject")

Application.ScreenUpdating = False

nextRow = 0
nextFile = Dir$(sourceFolder & "*.txt") ' Change to the right file extension
Do Until nextFile = ""
    nextRow = nextRow + 1
    Cells(nextRow, 1).Value = nextFile
    Set ts = fso.OpenTextFile(sourceFolder & nextFile)
    Cells(nextRow, 2).Value = ts.ReadAll
    ts.Close
    nextFile = Dir$
Loop

Application.ScreenUpdating = True

End Sub

WBD


Hi,
I created a random excel file. Pressed Alt+F3 and inserted this code as module. Then I specified the path of the folder where .txt files are located. Then I ran the code but nothing happened ? Am I doing any mistakes or may be there is any other problem?
 
Upvote 0
Hi,
I created a random excel file. Pressed Alt+F3 and inserted this code as module. Then I specified the path of the folder where .txt files are located. Then I ran the code but nothing happened ? Am I doing any mistakes or may be there is any other problem?

I ran the same code and it worked without issue. Please check:

[1] You've included the trailing backslash at the end of the sourceFolder string
[2] Your files have a .txt extension in that folder

WBD
 
Last edited:
Upvote 0
Try this

Code:
Sub openText()

'Go to tools>>Reference>> tick "Microsoft Scripting Runtime"


Dim fso As Scripting.FileSystemObject
Dim ts As Scripting.TextStream
Dim sText As String


Set fso = New Scripting.FileSystemObject
Set ts = fso.OpenTextFile("Input Path \123.txt")

  sText = ts.ReadAll
  Sheet1.Range("A1") = sText
On Error Resume Next
  ActiveWorkbook.SaveAs Filename:="Output Path\qqqq.csv", FileFormat:=xlCSV, _
        CreateBackup:=False
  ActiveWorkbook.Close
        
End Sub

There are two issues:

1) This code is purposed for one txt file at a time. But I have 500 txt files which I want to convert as a bulk into csv files.
2) Running this code for one file: The code is not running. I have attached the snapshot.

34gr2g1.png
 
Upvote 0
I ran the same code and it worked without issue. Please check:

[1] You've included the trailing backslash at the end of the sourceFolder string
[2] Your files have a .txt extension in that folder

WBD


Yes this code is working like a charm. Tons of thanx and stay blessed :)
 
Upvote 0
I don't what this says about me, but I've been using this site for years, and I have yet to post a image. Please tell me how. Do I have to have my own website url to post an image?
 
Upvote 0

Forum statistics

Threads
1,216,179
Messages
6,129,329
Members
449,502
Latest member
TSH8125

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