別のアプリケーションに入力するために、コードを使用してデータを Excel から .txt にコピーし、不要な文字を削除していました。
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
ここで、列の 1 つが format: の日付である別のデータ セットの下で使用する必要がありますyyyymmdd
。上記のコードを適用すると、その列が format で取得されますdd/mm/yyyy
。
元の日付形式を Excel から に保存する方法はあります.txt
か?
あなたの助けは大歓迎です!