View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Graham Graham is offline
external usenet poster
 
Posts: 155
Default Open .txt, Save as .xls from command line

perfect, Thanks.

One additional question if I may:

What if I want to close excel.exe completely, not just the workbook?

"Dave Peterson" wrote:

If your text file is always the same name, then start a new workbook.
Turn on the macro recorder and record your steps when you do it manually.

Save that workbook as a nice name. You could open that workbook and run the
macro whenever you want to import that text file.

Or you could give the macro the name: Auto_open

Then put a shortcut to that workbook on your desktop. Just double click on the
shortcut, excel will open your file, run the macro and tada!

You could even add:

Thisworkbook.close savechanges:=false

right before the closing "end sub"

and the macro workbook will close (without saving any changes--so don't do this
while you're testing if you haven't saved it!)

graham wrote:

I think the subject says it all! I have a txt file that I receive daily that I would like to create a .bat file to open, delimit based on 'space', and save as a xls file.

I'm clueless, any help would be greatly appreciated!

THANKS!


--

Dave Peterson