Thread: Saving a file
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
kassie kassie is offline
external usenet poster
 
Posts: 268
Default Saving a file

You cannot just activate it again. You have to open it. Easiest would be to
set a variable to the name of the workbook, and then open it using the
variable

"Oldjay" wrote:

I have a file named "Process Tech Time Sheet Ver2.1.XLS"
I modify it and then want to save it under another name say "jobsave1"

ActiveWorkbook.SaveAs Filename:=jobsave1
ActiveWorkbook.Close
Windows("Process Tech Time Sheet Ver2.1.XLS").Activate
Range("D1").Select
Range("D3").Select

The problem is after I save "jobsave1" I can no longer activate "Process
Tech Time Sheet Ver2.1.XLS"

How do I save "jobsave1" and then return to "Process Tech Time Sheet
Ver2.1.XLS"

oldjay