Opening semicolon delimited CSV file

后端 未结 8 1941
我寻月下人不归
我寻月下人不归 2020-12-18 07:57

How does one open a semicolon delimited CSV file with VBA in Excel 2000?

Sample data

An ID;TEST20090222
A Name;Firstname Surname
A D         


        
8条回答
  •  情歌与酒
    2020-12-18 08:26

    Re Any ideas?

    If you want to fix a file for others using excel add this on the first line of the file without the quotes followed by a linebreak: "sep=;”

    An easy way to manually open stupid files is to rename the extension to .txt or .htm then from excel use File - Open.

    From VBA I recommend looking up the method in MSDN and manually specifying every parameter, my experience was that this eliminated most regional issues.

提交回复
热议问题