Convert xlsx/csv to .dat file to be saved in a local folder

Abegail0203

New Member
Joined
Mar 6, 2022
Messages
5
Office Version
  1. 2010
Platform
  1. Windows
Hello,

Hope you are doing well.

Needed a help. Looking for a possibility if there is a vba code that will auto-convert an xlsx or csv file into a ".dat" file.

The spreadsheet itself is a list of names and addresses (just standard information) with no formulas or formatting.

How would I go about "exporting" this information into ".dat" format and writing a macro that will do this for me.

Destination folder is a local drive - "H:\Output Folder"

Many thanks,
 

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.
Hello,​
as you forgot to describe your worksheet and what could be your ".dat" format as well​
so I can just advise to activate the Macro Recorder then use the Save As option from the File menu …​
 
Upvote 0
Hi Marc,

Thank you for taking my concern. Actually, I have found a similar case here but it posted way back 2014. It solved his problem on the code given by one of the members here. However, when I used his code, I run into errors on the path to where the output will go. Please refer to the text in bold format.
Kindly help me write my destination folder. My local folder is "H:\Output Folder".


Sub TestDatFile()

' The delimiter can be set to any value depending on requirements
Const DELIMITER As String = "|"

Dim myRecord As Range
Dim myField As Range
Dim sOut As String

' this is the path to where you want the output file to go
Open "\\filepath\UploadPipe.dat" For Output As #1

For Each myRecord In Worksheets("Dat Test").Range("B4:B" & Range("B" & Rows.Count).End(xlUp).Row)
With myRecord
For Each myField In Worksheets("Dat Test").Range(.Cells, Cells(.Row, Columns.Count).End(xlToLeft))

' The delimiter can be set either before or after the cell value
sOut = sOut & myField.Text & DELIMITER

Next myField
Print #1, Mid(sOut, 1)
sOut = Empty
End With
Next myRecord
Close #1
MsgBox "UploadPipe.dat has been created successfully", vbOKOnly

End Sub
 
Upvote 0
Just replace the string with your complete destination filename like H:\Output Folder\filename …​
 
Upvote 0

Forum statistics

Threads
1,216,593
Messages
6,131,645
Members
449,661
Latest member
dianekawahyudin

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