View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
C2Ranches C2Ranches is offline
external usenet poster
 
Posts: 5
Default Macro works if saved in 2003 format


I dont even get that far in the macro (SaveAs)€¦.it hangs when I try to copy
the temp workbook into another workbook and doesnt even get to the SaveAs
command yet. It hangs on this command::
Workbook.Add (it opens a workbook here)
Then hangs he:
Temp.Copy Befo=ActiveWorkbook.Sheets(1)

"Ron de Bruin" wrote:

Hi C2Ranches

See this page for more info
http://www.rondebruin.nl/saveas.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"C2Ranches" wrote in message ...
Does anyone know why this code would work in Excel 2007 as long as it is
saved in 2003 format, but if it is saved in Excel 2007 format it will work
once but not twice or mo

Workbooks.Add
Temp.Copy Befo=ActiveWorkbook.Sheets(1)
Application.CutCopyMode = False
ActiveWorkbook.SaveAs Filename:="C:\HOLDINGS\stipdaily"
ActiveWorkbook.Close
Book.Close


Runs the first time fine, but if you try to run it again, it hangs at:
Temp.Copy Befo=ActiveWorkbook.Sheets(1)
If you save the Macro in 2003 format, it works every time you want to run it.

Thanks ahead of time for any clues you can pass along.