how to dynamically import a text file

G

Guest

I don't want to hard code the path and file name. I want to make it dynamic.
This is what I have so far but it fails. Any ideas? Thanks a lot, Darren

Sub import_cmsies_in_trans()
Dim vInv_file As Variant
Dim vInv_file_A As Variant

vInv_file = Application.GetOpenFilename(Filefilter:= _
"Text Files(*.txt),*.txt", Title:="Open the CMSIES in transit file")

'I can see here that I have the path and name via the msgbox
vInv_file_A = "TEXT;" & vInv_file
MsgBox (vInv_file_A)

With ActiveSheet.QueryTables.Add(Connection:= _
"vinv_file_A", Destination:=Range("A1"))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top