View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Adi H. Adi H. is offline
external usenet poster
 
Posts: 1
Default opening text file in excel through inputbox

Hello,
I want to open a text file in excel, then user some delimiters. How can
I combine this with the fact that one will enter the filename in a
dialog box (input box) ?
Also, I don't want to see all the screens with what kind of delimiters
to use.


Like:
Workbooks.OpenText Filename:=num_fis_ancin & ".txt"
Origin:=xlMSDOS, StartRow:=1, DataType:=xlDelimited, TextQualifier:= _
xlNone, ConsecutiveDelimiter:=True, Tab:=True, Semicolon:=True,
Comma:= _
True, Space:=True, Other:=True, OtherChar:="=",
FieldInfo:=Array(Array( _
1, 1), Array(2, 1), Array(3, 1), Array(4, 1), Array(5, 1),
Array(6, 1), Array(7, 1)), _
TrailingMinusNumbers:=True
But as I said, I would like that the name of the file to be input
through a inputbox or using something like
Application.GetOpenFilename(FileFilter:="Text Files (*.txt), *.txt"...