Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Is it possible to call the TextImportWizard with vba? If yes, how to do? Tom |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I think you could open a text file and import it to only column A. Then show
that dialog. Option Explicit Sub testme() Dim myFileName As Variant myFileName = Application.GetOpenFilename("Text files, *.txt") If myFileName = False Then Exit Sub End If Workbooks.Open Filename:=myFileName Range("a:a").Select Application.Dialogs(xlDialogTextToColumns).Show End Sub Tom wrote: Hi Is it possible to call the TextImportWizard with vba? If yes, how to do? Tom -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Wouldn't know what to call it! | Excel Worksheet Functions | |||
Call Center Management: How to calculate 'cost per call' | Excel Discussion (Misc queries) | |||
TextImportWizard & VBA | Excel Programming | |||
How do you call one Sub from another Sub ? | Excel Programming | |||
call sub | Excel Programming |