Can I save a re-useable template for Text Import Wizard?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I frequently have to import data from an accounts report txt file into Excel
2K, via the Text Import Wizard, fixed width mode. Is there any way to save
the column width settings for future re-use?
 
How about this:

If you're always importing files with the same layout, you could record a macro
when you import one of these files.

Start a new workbook.
Record a macro when you open your text file.

Do all the stuff you want during the import, but keep recording when you add
headers/page setup/filters/subtotals/columnwidths/whatever.

Then plop a button from the Forms toolbar on the worksheet (in the workbook that
contains the code). Assign your macro to this button.

Save that workbook and click the button to test it out!

You could even ask the user (you???) for the name of the file to import:

Option Explicit
Sub testme()

Dim myFileName As Variant

myFileName = Application.GetOpenFilename(filefilter:="Text Files, *.Txt", _
Title:="Pick a File")

If myFileName = False Then
MsgBox "Ok, try later" 'user hit cancel
Exit Sub
End If

Workbooks.OpenText Filename:=myFileName '....rest of recorded code here!

End Sub

You'll have to add all that .opentext stuff from your recorded macro.

Then plop a button from the Forms toolbar on the worksheet (in the workbook that
contains the code). Assign your macro to this button.

Save that workbook and click the button to test it out!

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
 
Thanks very much, Dave. I had not thought about creating a macro; I have not
done any of that stuff for a long time, and will have to re-learn (so thanks
for the link as well). I will try it out.

Best wishes,
Sinhavacin
 

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

Back
Top