nischalinn
New Member
- Joined
- Jul 14, 2014
- Messages
- 11
When I converted excel to text file via VB code, the default text file is tab delimited. Why is it so?
I've done:
Can I change the default delimition to pipe, how can I do this? How can I make an excel file to pipe delimited text file in default?
Please can anyone explain that to me.
Thanks a lot!!!
I've done:
Code:
Sub ConvertToText()
ActiveWorkbook.SaveAs Filename:="E:\EXCEL\TEST.txt", FileFormat:=xlCurrentPlatformText, CreateBackup:=False
End Sub
Can I change the default delimition to pipe, how can I do this? How can I make an excel file to pipe delimited text file in default?
Please can anyone explain that to me.
Thanks a lot!!!