I had been using a code to copy data from excel to .txt removing any unwanted characters, for input to another application:
Public DirRoot As String
Public CasNam As String
Public Sub Export()
Dim intUnit As Integer
Dim rngRow As Range
Dim rngCell As Range
Dim strText As String
intUnit = FreeFile
DirRoot = "C:\temp\"
CasNam = "Test"
Open DirRoot & CasNam & ".txt" For Output As intUnit
'End If
With Worksheets("Export").UsedRange
For Each rngRow In .Rows
strText = ""
For Each rngCell In rngRow.Cells
If Len(rngCell.Value) = 0 Then Exit For
strText = strText & " " & rngCell.Value
Next
Print #intUnit, Trim(strText)
Next
End With
Close intUnit
End Sub
Now I need to use it under a different set of data where one of the columns is a date with the format: yyyymmdd, when I apply the above code, I get that column with the format dd/mm/yyyy.
Is there any way I can preserve the original date format from excel to .txt?
Your help is highly appreciated!