Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim FileText As string
Open "file.csv" for input as #1
FileText = Input(LOF(1), #1)
Close
Open "file.txt" for output as #1
Print #1, Replace(FileText, ",", vbTab)
Close
Open "file.csv" for input as #1
Open "file.txt" for output as #2
Print #2, Replace(Input(LOF(1), #1), ",", vbTab)
Close
Dim myExcelApplication As Excel.Application
Set myExcelApplication = CreateObject("Excel.Application")
With myExcelApplication
.DisplayAlerts = False
.Workbooks.Open "file.csv"
.ActiveWorkbook.SaveAs "file.txt"
.Quit
End With
With CreateObject("Excel.Application")
.DisplayAlerts = False
.Workbooks.Open "file.csv"
.ActiveWorkbook.SaveAs "file.txt"
.Quit
End With