hey there stone - here's what i've got that works:
Dim ex as new excel.application
dim wrkbk as excel.workbook
dim xlApp as Excel.application
set xlApp = Excel.Application
Set wrkbok = ex.Workbooks.Add
ex.Visible = true
ChDir "C:\______________________" ' drive and path of file
Workbooks.Open Filename:= "C:\_________" ' drive, path
' and filename
' of file
ActiveWorkbook.SaveAs Filename:= "C:\____________"
' drive, path and filename that you want to save as
continue on with the code from here, until you've entered
everything else that you want to occur between saving and
closing excel.
to close excel, i've used:
ex.Quit
Set ex = nothing
wrkbk.close
set wrkbk = nothing
xlApp.Quit
set xlApp = nothing
****Please note, I have trouble with closing the excel
process this way - test it with your code a couple of
times, after each time go into Task Manager under the
processes tab, and look for EXCEL.EXE - I cannot figure
out how to get rid of this, and you will have to select it
and then "END PROCESS" to close Excel completely. If you
don't and try and open the file, you will get a sharing
violation error. If you try and open another file in
Excel, the application will open but your file will not.
Very frustrating, and if you figure out what to do, please
let me know.
Hope this helps!
ChrisBat