Debraj
Excel Ninja
Hi friends..
We received CSV file from EU country.
I dont know why, but they use ( as separator (why?)
So technically this CSV file is Semicolon Separated Value (SSV) file,
MAC Excel and OpenOffice Excel always read it properly, but Window Excel fail to read it (why?)
* Text to column wizard sometime Fail .. as address line also contain (
* OpenWIth > Notepad .. Find (";") (with quote) and ReplaceWith (",")(with quote) >> sometime Fail.. as only 37MB CSV file (with minimum 187654 X 134 matrix) in Notepad is only editable after a tea break..
* OpenWith > Notepad .. at the first line write
Workbook.Open Filename, [Delimiter]:=";"[/code]
.. and many other way.. but I am not satisfied..
* Like Application.PathSeparator or decmimal/thousand separator, is there any option to set DefaultSeparator or DigitGroupingSeparator.
Still begging to you for some smart way.. as I have a huge level of expectation from this site..
Any suggestions are welcome..
We received CSV file from EU country.
I dont know why, but they use ( as separator (why?)
So technically this CSV file is Semicolon Separated Value (SSV) file,
MAC Excel and OpenOffice Excel always read it properly, but Window Excel fail to read it (why?)
* Text to column wizard sometime Fail .. as address line also contain (
* OpenWIth > Notepad .. Find (";") (with quote) and ReplaceWith (",")(with quote) >> sometime Fail.. as only 37MB CSV file (with minimum 187654 X 134 matrix) in Notepad is only editable after a tea break..
* OpenWith > Notepad .. at the first line write
Code:
sep=; ... is also force me to take a nap..
* I can read the file with
[code]Open FileName For Input As #1
Split(String,delimeter,...)
Workbook.Open Filename, [Delimiter]:=";"[/code]
.. and many other way.. but I am not satisfied..
* Like Application.PathSeparator or decmimal/thousand separator, is there any option to set DefaultSeparator or DigitGroupingSeparator.
Still begging to you for some smart way.. as I have a huge level of expectation from this site..
Any suggestions are welcome..