"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
If this post helps click Yes
---------------
Jacob Skaria
Your code ends the error just fine but it supress the dialog box completely.
Is there a way to retain the dialog box where a "Yes" works fine (as it
always did) but the "No" and "Cancel" choices (the apparent Excel defaul
arrangement) are also functional?
Thanks again for your help
jcirish