Re: Excel Save Continued/...
When you do a .SaveAs your still left with the original wb in Excel and the new SaveAs wb. So the first issue is when you run this multiple times your file will alread exist and you will get the overwrite prompt (no way to surpress it without accepting the default of 'No') You could delete the preexisting file just before your .SaveAs so it will never prompt you for the overwrite. Second issue is the .SaveAs saving a duplicate file as whatever you name it. The solution is to tell Excel that the original copy has alread been saved witht the .Saved = True property assignment.
:)
Re: Excel Save Continued/...
Can you perhaps suggest some code thiat would allow me to delete the file? I am pretty new to vb.
Re: Excel Save Continued/...
Sure, use the Kill function.
:)