View Single Post
  #1   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

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.