View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ebbe Ebbe is offline
external usenet poster
 
Posts: 2
Default WorkBook.Open: Problems with field separation character

I am using these lines to open a semicolon separated file:

Dim ImportFileName As String
ImportFileName = Application.GetOpenFilename("CSV-files (*.csv), *.csv")
Workbooks.Open Filename:=ImportFileName, Format:=6, delimiter:=";"

The file is opened, but the Excel uses "," (comma) as separator.
WHY!

I am running Office 2000 Pro

Ebbe