Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm downloading a Watch List of stocks from Fidelity.com into an Excel 2007
spreadsheet. The download format is "stocks.csv." The VBA code below opens that file and saves it as an Excel 2007 workbook, "new stocks." The processs elicits a dialog box saying that "stocks.csv" already exists and asks if I want to replace it. If I click "Yes" the code excecutes ok. But If I click "No" or "Cancel" I get "Run time Error 1004" "Method 'SaveAS of Object'_Workbook' failed" Can someone tell me what's happening here and how I can correct this? Thanks in advance for any help you can give me. Here is the VBA code I'm using: ' ChangeDownloadFormat Macro ' Changes Downloaded Fidelity Watch Lists Format to Excel 2007 format ' Workbooks.Open "C:\Users\TEST\Desktop\Stocks.csv" 'Workbooks("Stocks.csv").Activate ActiveWorkbook.SaveAs Filename:="C:\Users\TEST\Desktop\new stocks.xlsx", _ FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False ActiveWorkbook.Close |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Error 1004 SaveAs Object workbook failed | Excel Programming | |||
Run-time error 1004 Method SaveAS of object _Workbook failed | Excel Programming | |||
runtime error 1004 saveas text file | Excel Programming | |||
error 1004 Method SaveAs of Workbook failed | Excel Programming | |||
Error Excel: 1004 SaveAs method of Workbook class failed | Excel Programming |